Fork me on GitHub
摘要: linux的发展史以及简介:https://blog.csdn.net/zengxiantao1994/article/details/53141747 linux的命令有很多,不需要可以去记,忘了就去差 Linux之通配符 https://www.cnblogs.com/0zcl/p/682121 阅读全文
posted @ 2019-07-24 18:29 cznczai 阅读(1282) 评论(0) 推荐(0) 编辑
摘要: 可以用数组保存 然后每一个结点的值进行更改 https://www.bilibili.com/video/av49696612/?redirectFrom=h5 迭代法 递归 阅读全文
posted @ 2019-07-24 17:20 cznczai 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 因为说不能改变结点内部的值 感觉我这种方法不是很可靠 重复同一个行为采用递归 阅读全文
posted @ 2019-07-24 10:19 cznczai 阅读(98) 评论(0) 推荐(0) 编辑
摘要: / Definition for singly linked list. public class ListNode { int val; ListNode next; ListNode(int x) { val = x; } } / class Solution { public ListNode 阅读全文
posted @ 2019-07-24 10:03 cznczai 阅读(90) 评论(0) 推荐(0) 编辑