大整数相加(用链表) 要求是:大整数相加,必须是非负整数#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 52 点赞 0 评论 78 浏览