C++顺序表实现 //SeqList.cpp #include "DSeqlist.h" // 构建顺序表DSeqList::DSeqList() {data = new datatype[MaxSize];if (data == NULL) throw "Sorry!,申请空间未成功!";maxlen = MaxS C++ 20 次浏览 2024-04-22
大数相加C++实现 include include include using namespace std; string addBigNumbers(string num1, string num2) {int carry = 0;string result = "";int i = num1.size() - C++ 21 次浏览 2024-04-21