Bug fixes and improvements (#1133)

* Bug fixes

* Update the figure of the JD link

* Unify the code comments of insertion_sort
This commit is contained in:
Yudong Jin
2024-03-14 20:01:16 +08:00
committed by GitHub
parent eadf4c86d4
commit 01c67781fa
14 changed files with 23 additions and 23 deletions

View File

@@ -38,7 +38,7 @@
que.append(4)
# 访问队首元素
front: int = que[0];
front: int = que[0]
# 元素出队
pop: int = que.popleft()