Keep Learner
订阅模式 订阅模式
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657let tree =
2022-05-23
偶数子序列 偶数子序列
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253let allarr;let alltemp,
2022-05-23
做题痕迹 做题痕迹
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646
2022-05-23
摸底题目讲解 摸底题目讲解
数据库操作12345678910111213141516#include<stdio.h>char s[5],s1[5],s2[5];int main(){ scanf("%s%s%s",&
2022-05-23
记录一次数组越界的bug 记录一次数组越界的bug
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646
2022-05-23
数组字符串 数组字符串
三角形面积$$\sqrt{p(p-a)(p-b)(p-c)} $$ $$p=\frac{1}{2}(a+b+c) $$
2022-05-23
cstring cstring
c语言字符串操作 string类全解 123456789101112131415161718#include<stdio.h>#include<string.h>int main(){ char a[]=&
2022-05-23
c++读写文件与容器操作 c++读写文件与容器操作
读写文件12345678910111213141516#include<stdio.h>#include<time.h>#include<stdlib.h>int main(){ srand(t
2022-05-23
队列操作 队列操作
queue<int> que push() 在队尾插入一个元素 pop() 删除队列第一个元素 size() 返回队列中元素个数 empty() 如果队列空则返回true front() 返回队列中的第一个元素 back
2022-05-23
map技巧 map技巧
初始化一个位置map<int,int> m;m[1]++;cout<<m[1]; map遍历map<int,int>::iterator it;
2022-05-20
2 / 3