1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-03-01 00:35:28 +08:00

docs: update algorithm package doc

This commit is contained in:
dudaodong
2022-05-30 17:53:21 +08:00
parent 4b4386bd47
commit 7f03c3b0a2
2 changed files with 29 additions and 34 deletions

View File

@@ -21,23 +21,20 @@ import (
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>
## Index ## Index
- [Algorithm](#algorithm) - [BubbleSort](#BubbleSort)
- [Source](#source) - [InsertionSort](#InsertionSort)
- [Usage](#usage) - [SelectionSort](#SelectionSort)
- [Index](#index) - [ShellSort](#ShellSort)
- [Documentation](#documentation) - [QuickSort](#QuickSort)
- [<span id="BubbleSort">BubbleSort</span>](#bubblesort) - [HeapSort](#HeapSort)
- [<span id="InsertionSort">InsertionSort</span>](#insertionsort) - [MergeSort](#MergeSort)
- [<span id="SelectionSort">SelectionSort</span>](#selectionsort) - [CountSort](#CountSort)
- [<span id="ShellSort">ShellSort</span>](#shellsort) - [BinarySearch](#BinarySearch)
- [<span id="QuickSort">QuickSort</span>](#quicksort) - [BinaryIterativeSearch](#BinaryIterativeSearch)
- [<span id="HeapSort">HeapSort</span>](#heapsort)
- [<span id="MergeSort">MergeSort</span>](#mergesort) - [LinearSearch](#LinearSearch)
- [<span id="CountSort">CountSort</span>](#countsort) - [LRUCache](#LRUCache)
- [<span id="BinarySearch">BinarySearch</span>](#binarysearch)
- [<span id="BinaryIterativeSearch">BinaryIterativeSearch</span>](#binaryiterativesearch)
- [<span id="LinearSearch">LinearSearch</span>](#linearsearch)
- [<span id="LRUCache">LRUCache</span>](#lrucache)
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>

View File

@@ -21,23 +21,21 @@ import (
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>
## 目录 ## 目录
- [Algorithm](#algorithm)
- [源码](#源码) - [BubbleSort](#BubbleSort)
- [用法](#用法) - [InsertionSort](#InsertionSort)
- [目录](#目录) - [SelectionSort](#SelectionSort)
- [文档](#文档) - [ShellSort](#ShellSort)
- [<span id="BubbleSort">BubbleSort</span>](#bubblesort) - [QuickSort](#QuickSort)
- [<span id="InsertionSort">InsertionSort</span>](#insertionsort) - [HeapSort](#HeapSort)
- [<span id="SelectionSort">SelectionSort</span>](#selectionsort) - [MergeSort](#MergeSort)
- [<span id="ShellSort">ShellSort</span>](#shellsort)
- [<span id="QuickSort">QuickSort</span>](#quicksort) - [CountSort](#CountSort)
- [<span id="HeapSort">HeapSort</span>](#heapsort) - [BinarySearch](#BinarySearch)
- [<span id="MergeSort">MergeSort</span>](#mergesort) - [BinaryIterativeSearch](#BinaryIterativeSearch)
- [<span id="CountSort">CountSort</span>](#countsort) - [LinearSearch](#LinearSearch)
- [<span id="BinarySearch">BinarySearch</span>](#binarysearch) - [LRUCache](#LRUCache)
- [<span id="BinaryIterativeSearch">BinaryIterativeSearch</span>](#binaryiterativesearch)
- [<span id="LinearSearch">LinearSearch</span>](#linearsearch)
- [<span id="LRUCache">LRUCache</span>](#lrucache)
<div STYLE="page-break-after: always;"></div> <div STYLE="page-break-after: always;"></div>