摘要:
安装svnserve yum -y install subversion rpm -ql subversion 查看安装位置 创建版本库目录 mkdir /home/svnrepos 创建svn版本库 svnadmin create /home/svnrepos/xxxx cd /home/svnr 阅读全文
摘要:
比较类排序 交换排序 冒泡排序 void bubble_sort(int arr[], int low, int high) { int len = high-low+1; for (int i = 0; i < len-1; ++i) { for (int j = 0; j < len-1-i; 阅读全文
摘要:
牛客等级之题N2(8.3场) 等级之题N2 设大半圆的半径为$R$,左小半圆半径为$r$ \(r = kR(0<k<1)\) \(\pi R^2 - \pi k^2R^2 - \pi (R-kR)^2 = 2s\) \(R^2(k-k^2)=\frac{s}{\pi}\) $k = \frac{1} 阅读全文
摘要:
剑指Offer 代码 剑指 Offer 03. 数组中重复的数字 剑指 Offer 04. 二维数组中的查找 剑指 Offer 05. 替换空格 剑指 Offer 06. 从尾到头打印链表 剑指 Offer 07. 重建二叉树 剑指 Offer 09. 用两个栈实现队列 剑指 Offer 10- I 阅读全文
摘要:
题意 第一小题 A组部分是和+5V电压相连的,然后用开关来控制PA7-PA0的状态,所以是输入口 然后B组部分是连接发光二级管直接接地的,所以是输出口 当开关全部断开时,此时PA7-PA0直接和高电平相连,所以PA7-PA0:1111 1111 此时将PA7-PA0的值输出给PB7-PB0,发光二极 阅读全文
摘要:
题目 有如图所示的接口简化图,要使发光二极管亮2秒,熄灭2秒,但该过程共进行20秒即终止,设OUT0输入频率为100HZ。8253端口地址为40H~43H编写出程序 8253控制字及工作方式 0端口分析 根据题目可得 \(\because f_{out0} = 100HZ\) \(\therefor 阅读全文
摘要:
A - Minimal Square #include <bits/stdc++.h> using namespace std; const int maxn = 1e4+5; int main() { int t; cin >> t; while (t--) { int a, b; cin >> 阅读全文
摘要:
代码 <!--jquery--> <script src="https://cdn.bootcdn.net/ajax/libs/jquery/2.2.4/jquery.min.js"></script> <!--toastr--> <link href="https://cdn.bootcdn.ne 阅读全文
摘要:
题目描述 Farmer John's N cows ($1 \leq N \leq 50,000$) are standing in a line, each described by an integer breed ID. Cows of the same breed are at risk f 阅读全文
摘要:
A. Archmage #include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int t; cin >> t; while (t--) { ll n, m, x, y; cin >> n >> 阅读全文