遍历 链表的节点输出 如果是c语言是不是就正确了

/**
*  struct ListNode {
*        int val;
*        struct ListNode *next;
*        ListNode(int x) :
*              val(x), next(NULL) {
*        }
*  };
*/

class Solution {
public:
    vector<int> printListFromTailToHead(struct ListNode* head) {// 遍历 链表的节点输出 如果是c语言是不是就正确了。
        int i;
        while(head->next){
            cout<<head->val;
        }
        return 1;
    }
};
全部评论
如果head就是Null呢?
点赞 回复 分享
发布于 2016-10-22 23:28
跟语言没关系啊,你不考虑传进来的是空指针吗?直接访问他的next?而且你这个是死循环。 while(head) {     cout<<head->val;     head = head->next; }
点赞 回复 分享
发布于 2016-10-22 22:35
head = head->next;  会一直移动 如果不存在 等于 null 
点赞 回复 分享
发布于 2016-10-22 22:38
就会跳出  不是么??
点赞 回复 分享
发布于 2016-10-22 22:39

相关推荐

我即大橘:耐泡王
点赞 评论 收藏
分享
hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务