code-snippets icon indicating copy to clipboard operation
code-snippets copied to clipboard

My code snippets, mostly for blog https://writings.sh

algorithms

春水煎茶 - 王超的个人博客 的算法类文章的相关代码。

查找类:

数组:

字符串:

数据结构:

  • ....................................... data-structure-heap
  • 哈希表 ....................................... data-structure-hashtable
  • 链表 类问题 ....................................... data-structure-list
  • 双头队列 ....................................... dequeue
  • 栈 - 动态内存版 ....................................... stack-dynamic-mem
  • 输出最小值的栈 ....................................... min-stack
  • 输出最大值的队列 ....................................... max-queue
  • 二叉树....................................... data-structure-binary-tree
  • 字典树 ....................................... data-structure-trie
  • 跳跃表 ..................... data-structure-skiplist

排序:

  • 堆排序 ....................................... sort-heap-sort
  • 快速排序 ....................................... sort-quick-sort
  • 归并排序 ....................................... sort-merge-sort

数学类:

  • 加减乘除四则运算 ....................................... math-four-operations
  • 快速幂 ....................................... math-four-operations
  • 平方根 ....................................... math-four-operations
  • 辗转相除 ....................................... math-number-theory
  • 素数筛法 ....................................... math-number-theory
  • 快速素数筛法 ....................................... math-number-theory

随机化:

  • 蓄水池抽样 ....................................... random-reservoir-sampling
  • 洗牌算法 ....................................... random-shuffle

经典问题: