摘要: 第一章 操作系统引论 操作系统的目标和作用 目标 方便高效 作用 用户与计算机硬件系统之间的接口 计算机系统资源的管理者 实现对计算机资源的抽象 操作系统的发展过程 1 无操作系统的计算机系统 2 单道批处理系统 3 多道批处理系统 4 分时系统 5 实时系统 6 微机操作系统 7 嵌入式操作系统 阅读全文
posted @ 2024-07-05 13:30 xde_yt 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 第一章 概论 1.网络安全发展阶段包括四个阶段:通信安全、计算机安全、网络安全、网络空间安全。 2.2017年6月1日,我国第一部全面规范网络空间安全的基础性法律《中华人民共和国网络安全法》正式实施。 3.2021年 6月10日,《中华人民共和国数据安全法》正式发布,9月1日起施行。 4.2021年 阅读全文
posted @ 2024-06-27 15:50 xde_yt 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 第零章 运算律 设$ \bullet,+\(是集合\)A\(上的两个个代数运算任取\)a、b、c\in A$ (1)都有\((a \bullet b)\bullet c=a \bullet(b \bullet c)\),则称$ \bullet$适合结合律 结合律需要依次验证,若不适合举反例即可 (2 阅读全文
posted @ 2024-06-20 00:22 xde_yt 阅读(47) 评论(0) 推荐(0) 编辑
摘要: L1-3帮助色盲 读题仔细点吧,背景还是可以看一下的 #include<bits/stdc++.h> using namespace std; #define int long long #define endl "\n" #define inf 0x3f3f3f3f void solve(){ i 阅读全文
posted @ 2024-04-25 11:11 xde_yt 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 数据库复习笔记 USE CS_yx_DB GO SET NOCOUNT ON -- ********** Begin ********** -- -- ********** 此处写“1、创建Student表”的SQL语句 ********** -- create table Student( Sno 阅读全文
posted @ 2024-04-23 08:05 xde_yt 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 保险箱 每一位由低位推出的,每一位可能进位,退位,不进不退三种状态 #include<bits/stdc++.h> using namespace std; #define int long long #define endl "\n" int n; const int N = 1e5 + 10; 阅读全文
posted @ 2024-04-10 00:02 xde_yt 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 不同的子序列 给你两个字符串 s 和 t ,统计并返回在 s 的 子序列 中 t 出现的个数,结果需要对 109 + 7 取模。 class Solution { public: int numDistinct(string s, string t) { int dp[1100][1100];//d 阅读全文
posted @ 2024-04-09 23:59 xde_yt 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 蜗牛 在每个点有两个状态,一个是在y=0处,一个是在上一个杆传过来的传送门处 注意最后到达的点一定是在y=0处 #include<bits/stdc++.h> using namespace std; #define int long long #define endl "\n" #define i 阅读全文
posted @ 2024-04-09 23:57 xde_yt 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 结果为真的序列I 当前位置填的False或者true和当前结果1或者0两两组合一共四个状态,也可以可以写成一维的 #include<bits/stdc++.h> using namespace std; #define int long long #define endl "\n" #define 阅读全文
posted @ 2024-04-09 23:55 xde_yt 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 背包与魔法 01背包的变形 因为只能用一次魔法就多加一维1表示用了魔法 0表示没用魔法 #include<bits/stdc++.h> using namespace std; #define int long long #define endl "\n" #define inf 1e18 cons 阅读全文
posted @ 2024-04-09 23:51 xde_yt 阅读(0) 评论(0) 推荐(0) 编辑