鱼C论坛

 找回密码
 立即注册
查看: 1061|回复: 0

[技术交流] C++刷leetcode(面试题 02.01. 移除重复节点)【数据结构】

[复制链接]
发表于 2020-4-11 14:44:47 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 糖逗 于 2020-5-8 17:49 编辑

题目描述:
编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。

示例1:

 输入:[1, 2, 3, 3, 2, 1]
 输出:[1, 2, 3]
示例2:

 输入:[1, 1, 1, 1, 2]
 输出:[1, 2]
提示:

链表长度在[0, 20000]范围内。
链表元素在[0, 20000]范围内。
#include <iostream>
#include <map>
using namespace std;


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


void PrintList(ListNode*input){
        ListNode*temp = input;
        while(temp -> next){
                temp = temp -> next;
                cout << temp -> val << " ";
        }
        cout << endl;
        cout << "-------------" << endl;
}


ListNode* solution(ListNode* input){
        map<int,int> store;
        ListNode* temp = input -> next;
    ListNode*pre = input -> next;
        while(temp != NULL){
                store[temp->val] ++;
                if(store[temp->val] > 1){
                        pre -> next = temp -> next;
                        temp = temp -> next; 
            continue;
                }
                pre = temp;
        temp = temp -> next;
        }
    return input;
}

int main(void){
        ListNode*input = new ListNode(0);
        ListNode*temp = input;
        cout << "please send numbers for the first singleList:" << endl;
    int number;
    while(cin >> number){
            ListNode* node = new ListNode(number);
            temp -> next = node;
            temp = node;
    }
    PrintList(input);
    ListNode* new_root = solution(input);
    PrintList(new_root);
    return 0;
}


注意事项:
1.基本数据结构考察。

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 06:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表