题解 | #从尾到头打印链表#

从尾到头打印链表

https://www.nowcoder.com/practice/d0267f7f55b3412ba93bd35cfa8e8035

class Solution {
public:
    vector<int> printListFromTailToHead(ListNode* head) {
        ListNode* p=head;
        int count=0;
        while(p){
            count++;
            p=p->next;
        }
        vector<int> b(count);
        for(int j=0;j<count;j++){
            b[count-j-1]=head->val;
            head=head->next;
        }
        return b;
    }
};

全部评论

相关推荐

07-15 14:14
门头沟学院 Java
7.10投递7.15感谢信
投递地平线等公司7个岗位
点赞 评论 收藏
分享
05-27 14:57
西北大学 golang
强大的社畜在走神:27届真不用急,可以搞点项目、竞赛再沉淀沉淀,我大二的时候还在天天打游戏呢
投递华为等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务