Skip to content

Commit c56daf3

Browse files
committed
🎨 fix: img url
1 parent b266045 commit c56daf3

File tree

6 files changed

+5
-2
lines changed

6 files changed

+5
-2
lines changed

dist/img/插入排序.gif

395 KB
Loading

dist/img/选择排序.gif

614 KB
Loading
395 KB
Loading
614 KB
Loading

docs/algorithm/排序/插入排序.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010

1111
插入时,从有序序列最右侧开始比较,若比较的数较大,后移一位。
1212

13-
![](https://upload-images.jianshu.io/upload_images/1867034-d1537e355abdd298.gif?imageMogr2/auto-orient/strip%7CimageView2/2/w/811/format/webp)
13+
14+
<img :src="$withBase('/插入排序.gif')" alt="foo">
15+
1416

1517
## 解法
1618

docs/algorithm/排序/选择排序.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88

99
每次循环选取一个最小的数字放到前面的有序序列中。
1010

11-
![](https://upload-images.jianshu.io/upload_images/1867034-c6cc220cfb2b9ac8.gif?imageMogr2/auto-orient/strip%7CimageView2/2/w/811/format/webp)
11+
<img :src="$withBase('/选择排序.gif')" alt="foo">
12+
1213

1314
## 解法
1415

0 commit comments

Comments
 (0)