博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Summary For the LinkList
阅读量:5067 次
发布时间:2019-06-12

本文共 613 字,大约阅读时间需要 2 分钟。

Keep in mind that there are two ways to deal with the LinkList very easily. 
 
1. Using the vector to store every item of the list, then we can use the index of the vector to operate the link. That helps a lot.
 
2. Using three pointers and should understand the theory.(pre, start, then) 
start is the beginning that we will reverse at the list. 
 
1-2-3-4  pre = 1, start = 2, then = 3
把then 插入到pre的后面,pre不动,then始终在放到start的后面.
start.next = then.next //把then先拿出来
then.next = pre.next //把then在新位置上前后相连
pre.next = then. // then的前面
then = start.next // then  重新放到start的后面  

转载于:https://www.cnblogs.com/zhuguanyu33/p/4423941.html

你可能感兴趣的文章
easyui设置行的背景色
查看>>
JavaScript学习总结【8】、面向对象编程
查看>>
【HackerRank】Gem Stones
查看>>
Octopress技巧之设置关键字和描述
查看>>
ajax学习
查看>>
数据库的优化
查看>>
【转】tar打包解压详解
查看>>
【hadoop】【demo】HBase shell
查看>>
GTK: about Building GTK+ 3.0
查看>>
MySQL 5.7的安装及主从复制(主从同步)
查看>>
互联网公司站点通病之弱口令
查看>>
python file的3中读法
查看>>
Linux下二进制包、源代码包、rpm包
查看>>
线型网络
查看>>
Xml帮助类
查看>>
jQuery 学习--事件
查看>>
spring scheduled
查看>>
IOS-objectForKey与valueForKey在NSDictionary中的差异
查看>>
本地推送通知在iOS8上的不同
查看>>
五种线程池的分类和作用
查看>>