Skip to content

Commit

Permalink
doc(fmt): doc链接到源代码
Browse files Browse the repository at this point in the history
  • Loading branch information
donjuanplatinum committed Jul 29, 2024
1 parent 38d19b4 commit bb7d0e3
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,23 @@

** Algorithms
*** Sorting 排序
- [[./doc/sorting/_index.md][InsertionSort 插入排序]]
- [[./doc/sorting/_index.md][SelectionSort 选择排序]]
- [[./doc/sorting/_index.md][BubbleSort 冒泡排序]]
- [[./doc/sorting/_index.md][BinarySort 二分排序]]
- [[./doc/sorting/_index.md][MergeSort 归并排序]]
- [[./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 数据结构
- [[./doc/structure/_index.md][Heap 堆/优先队列]]
- [[./doc/structure/_index.md][LinedList 双向链表]]
- [[./doc/structure/_index.md][二进制链表相加]]
- [[./doc/structure/_index.md][二进制链表相加]]
- [[./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 搜索
- [[./doc/searching/_index.md][BinarySearch 二分搜索]]
- [[./doc/searching/_index.md][two_sum 两数之和]]
- [[./src/searching/binary_search.rs::12][BinarySearch 二分搜索]]
- [[./src/searching/two_sum.rs::10][two_sum 两数之和]]
*** Math 数学
- [[./doc/math/_index.md][Complex 复数]]
- [[./doc/math/_index.md][DFT 离散傅立叶变换]]
- [[./doc/math/_index.md][pi 圆周率]]
- [[./src/math/complex.rs::57][Complex 复数]]
- [[./src/math/dft.rs::11][DFT 离散傅立叶变换]]
- [[./src/math/pi.rs::6][pi 圆周率]]
*** String 字符串
- [[./doc/string/_index.md][MaxSubarray 最大子数组]]
- [[./src/string/max_substring.rs::10][MaxSubarray 最大子数组]]

0 comments on commit bb7d0e3

Please sign in to comment.