[[https://crates.io/crates/algori][https://img.shields.io/crates/d/algori.svg]] [[https://github.com/BarrenSea/algori/fork][https://img.shields.io/github/forks/barrensea/algori.svg]] [[https://github.com/BarrenSea/algori][https://img.shields.io/github/repo-size/barrensea/algori.svg]] [[https://github.com/BarrenSea/algori][https://img.shields.io/github/stars/barrensea/algori.svg]] [[https://github.com/BarrenSea/algori][https://img.shields.io/github/commit-activity/t/barrensea/algori.svg]] [[https://conventionalcommits.org][https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white.svg]] ** Algorithms *** Sorting 排序 - [[./src/sorting/insertion_sort.rs::9][InsertionSort 插入排序]] - [[./src/sorting/selection_sort.rs::9][SelectionSort 选择排序]] - [[./src/sorting/bubble_sort.rs::9][BubbleSort 冒泡排序]] - [[./src/sorting/insertion_sort.rs::28][BinarySort 二分排序]] - [[./src/sorting/merge_sort.rs::39][MergeSort 归并排序]] *** Structures 数据结构 - [[./src/structure/heap.rs::37][Heap 堆/优先队列]] - [[./src/structure/heap.rs::225][堆排序]] - [[./src/structure/linkedlist.rs::13][LinedList 双向链表]] - [[./src/structure/linkedlist.rs::468][二进制链表相加]] - [[./src/structure/linkedlist.rs::442][十进制链表相加]] *** Searching 搜索 - [[./src/searching/binary_search.rs::12][BinarySearch 二分搜索]] - [[./src/searching/two_sum.rs::10][two_sum 两数之和]] *** Math 数学 - [[./src/math/complex.rs::57][Complex 复数]] - [[./src/math/dft.rs::11][DFT 离散傅立叶变换]] - [[./src/math/pi.rs::6][pi 圆周率]] *** String 字符串 - [[./src/string/max_substring.rs::10][MaxSubarray 最大子数组]]