当前位置:   article > 正文

力扣(LeetCode)算法_C++——替从尾到头打印链表_力扣c++reverseprint

力扣c++reverseprint

输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。

示例 1:

输入:head = [1,3,2]
输出:[2,3,1]

限制:

0 <= 链表长度 <= 10000

class ListNode
{
public:
	int val;
	ListNode* next;
	ListNode(int x) {
		val = x; 
		next = nullptr;
	}
};

int* reversePrint(ListNode* head)
{
	stack<ListNode*> stacks;
	ListNode* temp = head;
	while (temp!=nullptr)
	{
		stacks.push(temp);
		temp = temp->next;
	}

	int size = stacks.size();
	int* prints = new int[size];
	for (int i=0;i<size;i++)
	{
		prints[i] = stacks.top()->val;
		stacks.pop();
	}
	return prints;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码大牛/article/detail/62829
推荐阅读
相关标签
  

闽ICP备14008679号