- 博客(10)
- 资源 (1)
- 收藏
- 关注
原创 7_20英语学习笔记
一、exercise 1.hamper:n阻碍,盒子,v阻碍 hammer:n锤子 2.ignore:v忽视 ignorance:n无知 ignorant:adj无知的 3.migrate:移民 immigrate:移民入境 emigrate:移民出境 4.inherit:v继承 heir:n继承人 heritage:n遗产 //inherent:adj,内在的,固有的 //coherent:ad...
2019-07-20 22:53:19 162
原创 7_19英语学习笔记
1.replicate,duplicate都是复制品,区别于re,du(double) triplicate三联的 complicate复杂的 2.dynasty:王朝(读音i&ai都可) dynamite['daɪnəmaɪt]:1.n炸药2.adj极好的???(yes) 区别于已知:dynamic动态的&动力,dynamics动力学 3.execute:v实行,执行 execu...
2019-07-19 23:42:25 323
原创 7_19数据结构笔记
最大子列和问题:输入第1行给出正整数K (≤100000);第2行给出K个整数,其间以空格分隔。 (1)在线处理 #include <iostream> using namespace std; int main() { int data[100000]; long int n; cin >> n; for (int i = 0; ...
2019-07-19 14:55:48 117
原创 7_18c++学习笔记
个站尚未通过备案,借csdn住几天 1. `#include using namespace std; void swap( int *&a, int *&b//注意对int &的理解,先是int 指针类型,再是引用 //错误:int *a, int *b 即使通过指针直接进行修改内存,也是临时形参变量(这里不是全局变量的指针),应该用指针的引用,注意从语法角度逐步理解 ...
2019-07-18 21:37:34 136
原创 洛谷P1307 利用递归 数字反转
先上自写的代码 #include <iostream> #include <cstdio> #include <cstring> using namespace std; void reverse(long int x) { if (x / 10 == 0) { cout << x; return; ...
2019-06-09 12:37:22 318
原创 洛谷P1464记忆性搜索
先上自己理解的不三不四的代码 `#include #include #include using namespace std; long long int ans[21][21][21] = { 0 }; long long int w(int a, int b, int c) { if (a <= 0 || b <= 0 || c <= 0) { return 1; } ...
2019-06-09 11:13:01 158
原创 洛谷P2089半抄的dps?
先放着,日后总结 #include <iostream> #include <algorithm> #include <cmath> using namespace std; int n; int ans = 0; int ways[10001][11] = { 0 }; int temp[11] = { 0 }; void dfs(int x, int y...
2019-06-08 11:07:49 93
原创 洛谷P1618特征判断不重
#include <iostream> #include <algorithm> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; int num1, num2, num3; int num[9] = { 0 }; ...
2019-06-08 10:16:42 131
原创 洛谷P478背包问题与贪心
参考:1.https://www.cnblogs.com/A-S-KirigiriKyoko/p/6036368.html 2.https://blog.csdn.net/u014296502/article/details/80015722 3.https://www.cnblogs.com/Christal-R/p/Dynamic_programming.html 4.https://blog...
2019-06-08 08:54:03 195
原创 洛谷P1036 全组合问题
洛谷P1036 全组合问题 #include <iostream> #include <cmath> using namespace std; int n, k; long int num[20] = { 0 }; bool prime(int n) { int _n = int(sqrt(double(n))); for (int i = 2; i &...
2019-06-07 10:52:18 136
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人