摘要:
点击查看代码 class Solution { public: int search(vector<int>& nums, int target) { int left = 0; int right = nums.size(); int middle; while (left < right) { 阅读全文
摘要:
# 举例子,修改cd的默认路径 function cd() { if [ $# == 0 ]; then builtin cd ~/work else builtin cd $* fi } ref如下,一下博客中 还有其他方法,只是选了其中一个,try and it works https://ww 阅读全文
摘要:
修改 buildroot的配置选项,增删软件包 cd builroot make xxx_defconfig # xxx_defconfig 就在 buildroot 目录下中对应的板子文件 make menuconfig # 字符图形化界面修改配置 make savedefconfig BR2_D 阅读全文