Skip to content

Commit

Permalink
添加 Sort排序算法用到的图片,以及修改 Sort 算法整理的图片路径
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyyx committed Jul 10, 2018
1 parent bb50918 commit 933047d
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/Algorithm/Sort/Sort.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
" \n",
"### 1.3、动图演示\n",
"\n",
"![](img/BubbleSort.gif)\n",
"![](../../../images/SortingAlgorithm/BubbleSort.gif)\n",
"\n",
"### 1.4、代码实现"
]
Expand Down Expand Up @@ -178,7 +178,7 @@
" \n",
"### 2.3、动图演示\n",
"\n",
"![](img/InsertSort_1.gif)\n",
"![](../../../images/SortingAlgorithm/InsertSort_1.gif)\n",
"\n",
"### 2.4、代码实现\n",
"\n",
Expand Down Expand Up @@ -244,7 +244,7 @@
" \n",
"### 3.3、动图演示\n",
"\n",
"![](img/SelectionSort_1.gif)\n",
"![](../../../images/SortingAlgorithm/SelectionSort_1.gif)\n",
"\n",
"### 3.4、代码实现\n",
"\n",
Expand Down Expand Up @@ -314,7 +314,7 @@
" \n",
"### 4.3、动图演示\n",
"\n",
"![](img/QuickSort_1.gif)\n",
"![](../../../images/SortingAlgorithm/QuickSort_1.gif)\n",
"\n",
"### 4.4、代码实现"
]
Expand Down Expand Up @@ -419,11 +419,11 @@
"\n",
"第一趟希尔排序,间隔为4\n",
"\n",
"![](img/ShellSort_2.png)\n",
"![](../../../images/SortingAlgorithm/ShellSort_2.png)\n",
"\n",
"第二趟排序:间隔为 2\n",
"\n",
"![](img/ShellSort_3.png)\n",
"![](../../../images/SortingAlgorithm/ShellSort_3.png)\n",
"\n",
"第三趟排序,间隔为 1,即 直接插入排序法(InsertSort):\n",
"\n",
Expand Down Expand Up @@ -453,11 +453,11 @@
" \n",
"### 5.3、动图演示\n",
"\n",
"![](img/ShellSort_1.gif)\n",
"![](../../../images/SortingAlgorithm/ShellSort_1.gif)\n",
"\n",
"再附加一个静态图:\n",
"\n",
"![](img/ShellSort_4.png)\n",
"![](../../../images/SortingAlgorithm/ShellSort_4.png)\n",
"\n",
"### 5.4、代码实现"
]
Expand Down Expand Up @@ -528,7 +528,7 @@
" \n",
"### 6.3、动图演示\n",
"\n",
"![](img/MergeSort_1.gif)\n",
"![](../../../images/SortingAlgorithm/MergeSort_1.gif)\n",
"\n",
"### 6.4、代码实现\n",
"\n",
Expand Down Expand Up @@ -665,11 +665,11 @@
"\n",
"依照其个位数决定将其加入哪个桶中\n",
"\n",
"![](img/RadixSort_2.png)\n",
"![](../../../images/SortingAlgorithm/RadixSort_2.png)\n",
" \n",
"### 7.3、动图演示\n",
"\n",
"![](img/RadixSort_1.gif)\n",
"![](../../../images/SortingAlgorithm/RadixSort_1.gif)\n",
"\n",
"### 7.4、代码实现\n",
"\n",
Expand Down
Binary file added images/SortingAlgorithm/BubbleSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/InsertSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/MergeSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/QuickSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/RadixSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/RadixSort_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/SelectionSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/ShellSort_1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/ShellSort_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/ShellSort_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/SortingAlgorithm/ShellSort_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 933047d

Please sign in to comment.