摘要:
计算方式: 1.先把请求的RT都记录在数组里 2.对数组从小到大排序,前99%个就是99%time、前95%个就是%95time 阅读全文
摘要:
原文:https://blog.pregos.info/wp-content/uploads/2010/09/iowait.txt 原文:https://www.kawabangga.com/posts/5903 原文: What exactly is "iowait"? To summarize 阅读全文
摘要:
二叉树的定义方式: 1.顺序表: typedef struct SqTree{ char data[maxsize]; bool isNULL; }SqTree; 2.链表 struct node{ int val; struct node *lchild,*rchild; // int Ltag, 阅读全文
摘要:
1.可以把string/vector当栈用。std::string类实现了类似栈操作的接口,push_back(val)、pop_back()、back()等方法类似于push()、pop()、top()。 例如:v.insert(v.begin(),int x)相当于入栈操作。 2.判断 vect 阅读全文
摘要:
vscode: 插件1: Markdown Preview Enhanced,用来预览md文件的效果 插件2:Markdown All in One,用来对md文件生成目录 ### 4.md文件的用法 - H~2~O - 2^10^ - ~~删除文本~~ - ==标记文本== - *强调文本* - 阅读全文
摘要:
首先,c语言中没有string类型,直接用scanf读入string类型是不正确的。如: string a; scanf("%s",a); // 录入"asd" cout << a; // 输出后a是空 正确方式: string a; a.resize(8); scanf("%s",&a[0]); 阅读全文
摘要:
1.ctrl+shift+p 2.在弹窗中输入local history,选择"find entry to restory",然后选择目标文件找到时间线的代码,复制即可 阅读全文
摘要:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 二叉树遍历大致分为以下两种: 1.先序遍历、中序遍历、后序遍历 2.层次遍历 <<<<<<<<<<<<<<<<<<<<<<<<<<< 阅读全文
摘要:
一.顺序队 1.入队判断队满,出队判断队空; 2.顺序队定义时,要注意front、rear是下标,不是指针。 typedef struct{ int data[maxsize]; int rear,front; // front:队头元素的下标。rear:队尾元素的后一个位置的下标(下一个待插入的位 阅读全文