数据结构与算法
主要包含数据结构和算法相关知识
「已注销」
这个作者很懒,什么都没留下…
展开
-
字串和子序列
子串:连续的子字符串 子序列:不连续子字符串 最长不含重复字符的子串 https://leetcode-cn.com/problems/zui-chang-bu-han-zhong-fu-zi-fu-de-zi-zi-fu-chuan-lcof/solution/mian-shi-ti-48-zui-chang-bu-han-zhong-fu-zi-fu-d-9/ 动态规划 public class test_0901_1 { public static void main(String[.原创 2020-09-03 18:29:39 · 371 阅读 · 0 评论 -
二叉树的遍历
二叉树的主要遍历方式有两种: DFS,Depth First Searc,深度优先 BFS,Breadth First Search,广度优先 文章目录1.二叉树结构2.构建节点和二叉树3.DFS3.1先序遍历(根->左->右)3.2中序遍历(左->根->右)3.3后序遍历(左->右->根)4.BFS 1.二叉树结构 1 / \ 2 3 / \ 4 5 2.构建节点和二叉树 class TreeNode { //原创 2020-07-29 13:00:48 · 196 阅读 · 0 评论 -
排序算法
快速排序原创 2020-07-15 10:40:45 · 168 阅读 · 0 评论 -
Java 单链表反转
单链表反转,常见的解法为递归和遍历 递归 public class test { public static void main(String[] args) { Node head = new Node(1); Node node1 = new Node(2); Node node2 = new Node(3); Node ...转载 2020-04-22 17:10:14 · 164 阅读 · 0 评论