【剑指 Offer 随笔】06 从尾到头打印链表 -- 栈or数组

  • 06 从尾到头打印链表
    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/cong-wei-dao-tou-da-yin-lian-biao-lcof
    输入一个链表的头节点,从尾到头反过来返回每个节点的值(用数组返回)。
    示例 1:

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

限制:
0 <= 链表长度 <= 10000
解题思路:【c++】(1)遍历链表得到链表长度,并将所有数值存入一个数组,再反向搜索存入另一个数组;(2)利用栈,遍历链表将所有元素压入栈,在将元素从栈中拿出存入数组。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    vector<int> reversePrint(ListNode* head) {
        //solution 1
        // int count = 0;
        // ListNode* node = head;
        // vector<int> num, num_reverse;   //默认为[]
 
        // while (node != NULL){
        //     count ++;
        //     num.push_back(node->val);
        //     node = node->next;
        // }
        // // cout<< num.size()<<endl;
        // if (count >0){
        //     for(int i = 0; i< count; ++i){
        //         num_reverse.push_back(num[count -1-i]);
        //     }
        // }
        // return num_reverse;

        //solution 2
        stack<int> s;
        vector<int> num;
        while (head != NULL){
            s.push(head->val);
            head = head->next;
        }
       // cout << s.size()<<endl;
        while(!s.empty()){
            num.push_back(s.top());
            s.pop();
        }
        return num;
    }
};
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def reversePrint(self, head: ListNode) -> List[int]:
        num =[]
        num_reverse = []
        count = 0
        while(head):
            count =count+1
            num.append(head.val)
            head = head.next
        if count>0:
            for i in range(count):
                num_reverse.append(num[count-1-i])
        return num_reverse
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值