上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 36 下一页
摘要: A 至至子的等差中项 #include<bits/stdc++.h> using namespace std; int32_t main(){ int a , b; cin >> a >> b; cout << b * 2 - a << "\n"; } B 至至子的按位与 如果在二进制下按位考虑。如 阅读全文
posted @ 2022-11-10 10:39 PHarr 阅读(15) 评论(0) 推荐(0) 编辑
摘要: A. Sum 找到最大值即可 #include<bits/stdc++.h> using namespace std; int read(){ int x = 0 , f = 1 , ch = getchar(); while( (ch < '0' || ch > '9') && ch != '-' 阅读全文
posted @ 2022-11-08 16:59 PHarr 阅读(22) 评论(0) 推荐(0) 编辑
摘要: A - Find Takahashi 找到序列中最高的数存在的位置 #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > 阅读全文
posted @ 2022-11-08 13:15 PHarr 阅读(41) 评论(0) 推荐(0) 编辑
摘要: A - Rightmost #include<bits/stdc++.h> using namespace std; int32_t main() { string s; cin >> s; for( int i = s.size() ; i >= 1 ; i -- ) if( s[i-1] == 阅读全文
posted @ 2022-11-07 21:51 PHarr 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 我会开摆 枚举一下左上角即可 #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') && ch != '-') 阅读全文
posted @ 2022-10-30 21:41 PHarr 阅读(23) 评论(0) 推荐(0) 编辑
摘要: E题是个妙妙题 阅读全文
posted @ 2022-10-17 19:51 PHarr 阅读(69) 评论(0) 推荐(0) 编辑
摘要: # 6-1 用顺序栈实现将非负的十进制数转换为指定的进制数 这个其实就是每次把余数放进栈中就好了 ```c int DecimalConvert(SqStack *s, int dec, int scale){ InitSqStack( s ); while( dec ){ SqStackPush( 阅读全文
posted @ 2022-10-13 14:18 PHarr 阅读(254) 评论(0) 推荐(0) 编辑
摘要: # 线性表基础 线性表的基本操作 1. 初始化操作 2. 销毁操作 3. 引用(使用)型操作 4. 加工型操作 线性表主要有两种,一种是顺序结构,也就是常说的数组,还有一直是链式结构,也就是链表 这里,我们会经常使用一些函数进行内存管理。 在 C 中我们会用到`malloc(size)`来分配内存, 阅读全文
posted @ 2022-10-13 13:52 PHarr 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 逻辑代数基础 **数字电路的定义:**使用数字信号,并能对数字量进行 算术运算和逻辑运算的电路。 数字信号:指用二进制表示的信号,即信息用 0,1 来表示。 逻辑值的概念,在数字系统中通常用逻辑真和逻辑假状态来区分事物的两种对立的状态。逻辑真状态用1表示;逻辑假状态用0来表示。 0,1只有逻辑上的含 阅读全文
posted @ 2022-10-13 13:48 PHarr 阅读(493) 评论(0) 推荐(0) 编辑
摘要: A - 484558 十进制转十六进制,签到题 #include<bits/stdc++.h> #define int long long using namespace std; int read(){ int x = 0 , f = 1 , ch = getchar(); while( (ch 阅读全文
posted @ 2022-10-10 15:08 PHarr 阅读(44) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 36 下一页