上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: https://www.cnblogs.com/qinlulu/p/13204789.html 一、计算机核心基础部件:BIOS 、BMC 1、BIOS 是什么? BIOS(Basic Input Output System),即基础输入输出系统,是刻在主板 ROM 芯片上不可篡改的启动程序,BIO 阅读全文
posted @ 2022-06-16 16:57 ainingxiaoguai 阅读(2371) 评论(0) 推荐(2)
摘要: IPMI(Intelligent Platform Management Interface)即智能平台管理接口是使硬件管理具备“智能化”的新一代通用接口标准。用户可以利用 IPMI 监视服务器的物理特征,如温度、电压、电扇工作状态、电源供应以及机箱入侵等。Ipmi 最大的优势在于它是独立于 CPU 阅读全文
posted @ 2022-06-16 16:56 ainingxiaoguai 阅读(1501) 评论(0) 推荐(0)
摘要: 光标移动 快捷键描述 Ctrl + a 移动光标到行首 Ctrl + e 移动光标到行尾 Alt + b 移动光标后退一个单词(词首) Alt + f 移动光标前进一个单词(词首) Ctrl + f 光标前进一个字母 Ctrl + b 光标后退一个字母 Ctrl + xx 当前位置与行首之间光标切换 阅读全文
posted @ 2022-06-16 15:46 ainingxiaoguai 阅读(74) 评论(0) 推荐(0)
摘要: https://cloud.tencent.com/developer/article/1409059 1.搜索类 在当前文件搜索 : Ctrl+F 在多个文件搜索 : Ctrl+Shift+F 向后查找选中的内容 : Shift+F3 向前查找选中的内容 : Shift+F4 转到下一个匹配,配合 阅读全文
posted @ 2022-06-15 17:30 ainingxiaoguai 阅读(336) 评论(0) 推荐(0)
摘要: 在模板定义语法中关键字class与typename的作用完全一样。 typename另外一个作用为:使用嵌套依赖类型(nested depended name),如下所示: class MyArray { public: typedef int LengthType; ..... } templat 阅读全文
posted @ 2022-03-30 16:34 ainingxiaoguai 阅读(65) 评论(0) 推荐(0)
摘要: 原文链接:https://blog.csdn.net/u011201045/article/details/38679417 首先要明白,C++中每一个对象所占的空间大小,对象的内存分布都是在编译时期就确定下来的。而对于模板类来说,对象占空间的大小和内存分布是不知道的,依所套用的类型而定,比如A为模 阅读全文
posted @ 2022-03-30 16:18 ainingxiaoguai 阅读(1091) 评论(0) 推荐(0)
摘要: void heapify(vector<int> &arr, int n, int i) { int largest = i; int lson = 2 * i + 1; int rson = 2 * i +2; if (lson < n && arr[lson] > arr[largest]) { 阅读全文
posted @ 2022-03-22 18:52 ainingxiaoguai 阅读(33) 评论(0) 推荐(0)
摘要: int partition(vector<int> &arr, int left, int right) { int key = arr[right]; int i = left; for (int j = left; j <right; j++) { if (arr[j] < key) { swa 阅读全文
posted @ 2022-03-22 18:38 ainingxiaoguai 阅读(10) 评论(0) 推荐(0)
摘要: void merge(vector<int> &arr, int left, int mid, int right) { int lpos = left; int rpos = mid + 1; int poss = left; int i = 0; vector<int> tempArr; whi 阅读全文
posted @ 2022-03-22 17:34 ainingxiaoguai 阅读(19) 评论(0) 推荐(0)
摘要: void shellSort(vector<int> &arr) { int i,j,gap,key; for (gap = arr.size() / 2; gap > 0; gap /= 2) { for (i = gap; i < arr.size(); i++) { key = arr[i]; 阅读全文
posted @ 2022-03-22 17:33 ainingxiaoguai 阅读(15) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 11 下一页