上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 107 下一页
摘要: 1.进程表项PCB字段 但是到底进程切换都有哪些操作呢? 转自:https://blog.csdn.net/shadow2512/article/details/73611805 概念:进程切换就是被中断进程与待运行进程之间的上下文切换(必须在内核模式下进行进程切换)。 具体过程: 转换为内核模式, 阅读全文
posted @ 2021-03-06 00:25 lypbendlf 阅读(730) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/qq_29883591/article/details/69063253 1.问题 在做354. 俄罗斯套娃信封问题题目时,写的sort函数: sort(envelopes.begin(),envelopes.end(),[](const vecto 阅读全文
posted @ 2021-03-05 16:10 lypbendlf 阅读(563) 评论(1) 推荐(1) 编辑
摘要: 转自:https://www.jianshu.com/p/7d63991470a8,https://bbs.csdn.net/topics/392084964 1.介绍 C++primer p474 上面提到在对vector进行push_back重新分配内存空间时,是将旧空间移动到新内存的,但移动过 阅读全文
posted @ 2021-03-03 15:49 lypbendlf 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/wkfvawl/p/9475939.html,https://www.cnblogs.com/linuxAndMcu/p/10264339.html 1.二分查找 #include <algorithm> //查找某个元素是否出现,返回布尔类型, 阅读全文
posted @ 2021-03-03 12:19 lypbendlf 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/zxman660/article/details/7875799 https://blog.csdn.net/cynhafa/article/details/6882061 1.字节流与字符流 所有文件在磁盘中的存储都是字节形式,而字符是在内存中形成 阅读全文
posted @ 2021-03-02 19:34 lypbendlf 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/g_super_mouse/article/details/109865408 https://zhuanlan.zhihu.com/p/26992935 1.简介 NAT(Network Address Translation,网络地址转换),在内 阅读全文
posted @ 2021-03-02 08:47 lypbendlf 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/yandaoqiusheng/article/details/84782655/,背包九讲 1.0-1背包问题 有背包容量为V,N个物品,每个重量为w[i],价值为v[i],每个物品仅有一件,要使得背包价值最大怎么装物品? 定义dp数组含义:dp[i 阅读全文
posted @ 2021-02-21 13:55 lypbendlf 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/peida/archive/2012/12/19/2824418.html https://www.jianshu.com/p/943b90150c10 1.简介 ps命令是Process Status的缩写。 ps命令列出的是当前那些进程的快照 阅读全文
posted @ 2021-02-17 20:24 lypbendlf 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.zhihu.com/question/22733033 1.概念 telnet是远程登陆协议,同时也是一个远程登陆软件,它是基于TCP协议的,端口号为23. 通过telnet命令可以登录到远程主机上, 但telnet传输过程中是明文传输的,不安全,所以出现了ssh进行安 阅读全文
posted @ 2021-02-17 19:09 lypbendlf 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/shuizhilan/article/details/6642040 https://zhuanlan.zhihu.com/p/32341542 1.组成 进程的PCB是系统感知进程的唯一实体。对进程进行操作,也可以理解为对PCB进行操作。 PCB是 阅读全文
posted @ 2021-02-05 17:04 lypbendlf 阅读(245) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 107 下一页