摘要:
代码弊端: 1.初始公式串的数值只能是0-9. 大于10的数字会有问题,可以改造myCopy函数 2. 计算顺序是从左到右。 比如2*3*4是先算的2*3 再算的rusult*4. 貌似c语言是从又到左的计算顺序 #include<iostream> #include<iomanip> #inclu 阅读全文
摘要:
#include<iostream> #include<iomanip> using namespace std; struct Node { public: Node():val(0),next(NULL){} Node(int v):val(v),next(NULL){} int val; No 阅读全文
摘要:
https://blog.csdn.net/diaokua8472/article/details/101640344?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.pc_r 阅读全文
摘要:
https://blog.csdn.net/u011288190/article/details/45722925 输出麻烦, 改造一下: #include<iostream> #include<time.h> #include<stdio.h> using namespace std; int m 阅读全文
摘要:
数组 : 1 4 7 9 12 45 56 [mayc@ ~/friendCode]$./test5find from 0 to 7find from 0 to 3find from 2 to 3find from 2 to 2没找到7find from 0 to 7find from 0 to 3 阅读全文
摘要:
1. 整数相除转成整数减法的程序 2. 二分查找法解整数相除 方式1 void showResult(const vector<char>& result) { for(int i = 0; i < result.size(); i++) { if(result[i] != '.') { cout 阅读全文
摘要:
0 回环 1 回环 11 回环 12 不回环 121 回环 1221 回环 12321 回环 123421 不回环 123311 不回环 #include<iostream> #include<cmath> using namespace std; int getNumberPow(int a) / 阅读全文
摘要:
1. 我们知道编译的过程: 详情: https://blog.csdn.net/huoyahuoya/article/details/53083424 a. 预处理: gcc -E hello.c -o hello.i b. 编译: gcc -s hello.c -o hello.s c. 汇编: 阅读全文
摘要:
#include<iostream> #include<vector> #include<string.h> #include<unistd.h> #include<stdlib.h> #include<stdio.h> using namespace std; int occupy[8][8] = 阅读全文
摘要:
分治算法技巧和原理: https://blog.csdn.net/weixin_44489823/article/details/92799755 这里假设m可以是个超大数, n也可以是个超大数。 所以用上 https://www.cnblogs.com/silentNight/p/13910510 阅读全文