大整数相加(用链表) 要求是:大整数相加,必须是非负整数#include<iostream>#include<stack>#define elemType intusing namespace std;typedef struct Node { elemType val; struct Node* next; Node(elemType x) :val(x), next(... Other 2023-10-12 124 点赞 1 评论 187 浏览