• Remove Duplicates from Sorted List 去除链表中重复值节点


    Given a sorted linked list, delete all duplicates such that each element appear only once.

    For example,
    Given 1->1->2, return 1->2.
    Given 1->1->2->3->3, return 1->2->3.

    如题目所诉,去除递增链表中重复值的节点。

    刚开始思路如下:

    1. 设置一个指针用于遍历全部节点
    2. 让每个节点和其next节点值比较,若相同则将当前节点的next指向其next的next
    3. 继续遍历……

    但是会有个问题,如果是{1,1,1},那么遍历到第一个1的时候,判断和第二个1相同,则将第一个1的next指向第三个1.

    程序结束,最后输出为{1,1},所以此方法行不通。

    /**
     * Definition for singly-linked list.
     * struct ListNode {
     *     int val;
     *     ListNode *next;
     *     ListNode(int x) : val(x), next(NULL) {}
     * };
     */
    class Solution {
    public:
        ListNode* deleteDuplicates(ListNode* head) {
            ListNode *node = head;
            
            while(NULL != node && NULL != node->next) {
                if(node->next->val == node->val) {
                    node->next = node->next->next;
                } else {
                    node = node->next;
                }
            }
            
            return head;
        }
    };
    

      

  • 相关阅读:
    docx python
    haozip 命令行解压文件
    python 升级2.7版本到3.7
    Pyautogui
    python 库搜索技巧
    sqlserver学习笔记
    vim使用
    三极管工作原理分析
    串口扩展方案+简单自制电平转换电路
    功率二极管使用注意
  • 原文地址:https://www.cnblogs.com/fanchangfa/p/4058229.html
Copyright © 2020-2023  润新知