2hu0
09
13
KMP算法思路归纳 KMP算法思路归纳
今天学习了判断字符串匹配操作中的kmp算法,现对此进行一个简单的梳理和归纳,思路主要来源于知乎上对kmp算法的几篇详细分析文章:https://www.zhihu.com/question/21923021 另外B站上也有kmp算法的视频演
2021-09-13 2hu0
12
单链表的冒泡排序 单链表的冒泡排序
冒泡排序是最基本也是最简单的一种排序,时间复杂度为O(n^2),我们可以使用它来对单链表进行排序操作。 链表定义本次链表采用以下的结构定义: typedef struct node{ int element; struct n
2021-09-12 2hu0
12
Hello World Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hex
2021-09-12 2hu0