赞
踩
示例 1:
输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]
提示:
链表中节点的数目范围是 [0, 5000]
-5000 <= Node.val <= 5000
进阶:链表可以选用迭代或递归方式完成反转。你能否用两种方法解决这道题?
- /**
- * Definition for singly-linked list.
- * struct ListNode {
- * int val;
- * ListNode *next;
- * ListNode() : val(0), next(nullptr) {}
- * ListNode(int x) : val(x), next(nullptr) {}
- * ListNode(int x, ListNode *next) : val(x), next(next) {}
- * };
- */
- #include <stack>
- //using namespace std;
- class Solution {
- public:
- List
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。