04 2021 档案
摘要:void quickSort(int a[],int begin,int end) { if(begin >= end) { return; }//递归结束条件 int i = begin; int j = end; int tempValue = a[i]; while( i != j) { wh
阅读全文
摘要:执行: sudo apt-get install libgl1-mesa-dev
阅读全文
摘要:./qtcreatorqt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.This application failed to start because no Qt pl
阅读全文
摘要:linux运行如软件的时候报权限不足 用命令chmod 修改一下对应软件运行目录下的.sh权限就可以了 chmod u+x *.sh
阅读全文