qBittorrent 最新下载地址、速度很快。不需要FQ

摘要: https://www.fosshub.com/qBittorrent.html?dwl=qbittorrent_4.4.3.1_x64_setup.exe 阅读全文
posted @ 2022-07-13 17:14 心中日月007 阅读(8) 评论(0) 推荐(0) 编辑

unbuntu vscode root权限打开

摘要: sudo code --user-data-dir ="~/.vscode-root" 阅读全文
posted @ 2021-03-04 14:16 心中日月007 阅读(434) 评论(0) 推荐(0) 编辑

qt 安装cmake

摘要: 1.Parse error. Expected a command name, got unquoted argument with text https://blog.csdn.net/zou_albert/article/details/103486685 cmake 出现错误提示: Parse 阅读全文
posted @ 2020-12-21 09:24 心中日月007 阅读(721) 评论(0) 推荐(0) 编辑

qt 安装选择编译器

摘要: 电脑装了vs、qt里面选对应的vs 就可以用vs的编译器了 如图: 注:uwp就不要选了、那是微软用来代替win32程序的 lib 选择 阅读全文
posted @ 2020-11-26 11:09 心中日月007 阅读(453) 评论(0) 推荐(0) 编辑

linux qt 编译 not find lGL

摘要: 选择最新版本的libGL.so.1.7.0 来创建软连接、不然还是会提示找不到 LGL 阅读全文
posted @ 2020-11-25 12:40 心中日月007 阅读(100) 评论(0) 推荐(0) 编辑

//快速排序

摘要: //快速排序#include "stdafx.h"using namespace std;#include<vector>#include<string>void quickaont(int a[], int l, int n);int main(){ int aa[] = { 1, 5, 7, 6 阅读全文
posted @ 2020-04-20 23:13 心中日月007 阅读(91) 评论(0) 推荐(0) 编辑

//选择排序

摘要: //选择排序#include "stdafx.h"using namespace std;#include<vector>#include<string>class Solution{public: static int* bubbleSort(int* array, int len) { int 阅读全文
posted @ 2020-04-19 21:15 心中日月007 阅读(86) 评论(0) 推荐(0) 编辑

//选择排序

摘要: //选择排序#include "stdafx.h"using namespace std;#include<vector>#include<string>class Solution{public: static int* bubbleSort(int* array, int len) { for 阅读全文
posted @ 2020-04-19 20:02 心中日月007 阅读(68) 评论(0) 推荐(0) 编辑

冒泡排序

摘要: //冒泡排序#include "stdafx.h"using namespace std;#include<vector>#include<string>class Solution{public: static int* bubbleSort(int* array, int len) { for 阅读全文
posted @ 2020-04-19 19:42 心中日月007 阅读(82) 评论(0) 推荐(0) 编辑

//把数组排成最小的数

摘要: //把数组排成最小的数#include "stdafx.h"using namespace std;#include <string>#include <vector>#include <map>#include<algorithm>class Solution{public: string fin 阅读全文
posted @ 2020-04-19 17:02 心中日月007 阅读(107) 评论(0) 推荐(0) 编辑