Insertion Sorting Explanation of inserting SortingConsider that when we have a set of pocker cards in our hands, how will we sort them? Normally, we will start with the third card, and find a right place to insert it i 2022-05-21 Sorting algorithm
Bubble Sorting Explanation of bubble SortingNaive VersionImage that a fish at the bottom of water tank blows bubbles, the bubbles will rise in the tank until they reach the water surface. That is similar to how bubb 2022-05-08 Sorting algorithm
Bucket Sorting Explanation of bucket sortingSimple VersionTo start with, assuming we have this set of numbers and we want to sort it in inscending order: 1The original set of number: 3,3,6,5,2,1,7 1The result set of 2022-05-06 Sorting algorithm
从github clone仓库或hexo d时发生问题的解决方案 由于github在国内被墙,所以开着vpn合并代码或者提交hexo编辑内容时常常会出现报错fatal:unable to access "网址名字"解决方法: 1. 在hexo博客所在的文件夹里运行命令行,输入git config --global --unset http.proxy 2. 在hexo博客所在的文件夹里运行命令行, 输入git config --g 2022-03-13 hexo,blog,vpn
Use Bootstrap5.x in Django3.x Due to rapid development of versions, some past instructions are impossible to use. This is the instrcution for newest versions. Introduction to Bootstrap and DjangoBootstrap is a font framework. It i 2022-03-13 Bootstrap,Django,font
Red-Black Tree(1) Introduction to Red-Black TreeRed-Black Tree is a kind of BST (Binary Search Tree). It support high efficiency search (log n), although it required more storage space. As we know that time can be save 2022-03-03 Data Structure,Tree,Search