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