摘要: 【转载】http://blog.chinaunix.net/uid-23253303-id-3999432.html Cgroups是什么? Cgroups是control groups的缩写,是Linux内核提供的一种可以限制、记录、隔离进程组(process groups)所使用的物理资源(如: 阅读全文
posted @ 2020-05-27 09:39 L晓幽灵 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://blog.csdn.net/xiaojun111111/article/details/51764389 知道子进程自父进程继承什么或未继承什么将有助于我们。下面这个名单会因为 不同Unix的实现而发生变化,所以或许准确性有了水份。请注意子进程得到的是 这些东西的 *拷贝*, 阅读全文
posted @ 2018-06-18 21:26 L晓幽灵 阅读(1035) 评论(0) 推荐(0) 编辑
摘要: C++编译器默认使用的是 __cdecl 模式,参数是通过栈传递的,因此是从右到左的传参顺序。 int f(int a, int b, int c) { return 0; } int main(){ return f(printf("a"),printf("b"),printf("c")); } 阅读全文
posted @ 2018-06-18 21:18 L晓幽灵 阅读(3286) 评论(1) 推荐(0) 编辑
摘要: TSS (任务状态段)的作用及结构 1.什么是TSS TSS全称Task State Segment ,是操作系统在进行进程切换时保存进程现场信息的段 2.TSS什么时候用,有什么用 TSS在任务(进程)切换时起着重要的作用,通过它保存CPU中各寄存器的值,实现任务的挂起和恢复。 比如说,当CPU执 阅读全文
posted @ 2018-04-10 14:44 L晓幽灵 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 我们使用下载Ryu源代码进行那个安装 Ryu官方文档:http://ryu.readthedocs.io/en/latest/ Ryu电子书:http://osrg.github.io/ryu/resources.html 使用mininet自定义网络拓扑mytopo.py: 启动一个Termina 阅读全文
posted @ 2018-03-21 18:14 L晓幽灵 阅读(795) 评论(0) 推荐(0) 编辑
摘要: 插入排序 插入排序通过遍历整个数组的数,每次取出一个数与前面的数进行比较,如果该数比前面的数小,则把该数插入到前面数的位置,相应的前面的数要后移以为。这样一直循环比较下去,知道该数不必前面的数小 阅读全文
posted @ 2018-03-21 15:59 L晓幽灵 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 归并排序,是分治法的一个重要例子。分治法可以分为三个步骤: 1. 分解,将原问题分解为更小的子问题 2. 解决,解决划分的子问题 3. 合并,将子问题的解合并成原问题的解 归并排序是最快的一类排序算法,其时间复杂度为 O(nlgn), 可以通过主方法或者递归数法来证明,主方法我们将会在后面的博客中说 阅读全文
posted @ 2018-03-21 15:56 L晓幽灵 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 我们通过源码方式搭建mininet仿真平台,使用git下载mininet源码 下载完成之后,使用下面命令选择安装版本: 版本选择完成后,使用下面命令进行安装: options选项包括: -a :安装所有mininet包含的东西,包括OVS交换机,wireshark和POX控制器 -nfv :安装Mi 阅读全文
posted @ 2018-03-21 15:40 L晓幽灵 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 16 3sum closest Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the 阅读全文
posted @ 2017-12-24 15:44 L晓幽灵 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of 阅读全文
posted @ 2017-12-18 22:29 L晓幽灵 阅读(106) 评论(0) 推荐(0) 编辑