摘要:
代码 来源: "面试常考 大数加减乘除" C++ include include include using namespace std; vector mult(string s1, string s2) { int l1 = s1.size(); int l2 = s2.size(); vect 阅读全文
摘要:
指针数组和数组指针 + 指针数组:数组的每一个元素都是指针,故所占内存的小和机子位数有关。 + 数组指针:数组的指针,即指向一个数组的指针就是数组指针,一般对应的是二维数组。 具体就不细说了,主要是分得清,不要弄混了,直接看下面的例子 例子 C++ include using namespace s 阅读全文