起因
十一在家整理 OB 笔记,发现两个超好用的插件:Linter & tag wrangler。
前一阵把 Obsidian 笔记用 Hexo 转换成静态网页发到 github.io 做自己 blog 网站。发现了笔记中的一些问题,比如 tag 过多、重复,markdown 格式不…
文章目录 其他do nothing command in matlab代码格式化在同一个m文件中写多个独立的功能函数改变启动时的默认文件夹博文链接 table使用 其他
do nothing command in matlab
disp() % Does nothing but allows developer to set a breakpoint here.代码格式化
Matlab编辑器具…
快速排序
模板
void quick_sort(int q[], int l, int r)
{if (l > r) return;int i l - 1, j r 1, x q[l r >> 1];while (i < j){do i ; while (q[i] < x);do j -- ; while (q[j] > x);if (i < j) swap(q[i], q[j]);}quick_sort(q, l, j)…