开放猎豹

文章
5
资源
0
加入时间
3年0月21天

大整数相加(用链表)

要求是:大整数相加,必须是非负整数#include<iostream>#include<stack>#define elemType intusing namespace std;typedef struct Node { elemType val; struct Node* next; Node(elemType x) :val(x), next(...