基础操作用数组获得链表,用尾插法,迭代正向输出,递归反向输出
struct ListNode {
int val;
ListNode *next;
ListNode() : val(0), next(nul
2021-09-23