c_cpp 从未排序的链接列表中删除重复项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 从未排序的链接列表中删除重复项相关的知识,希望对你有一定的参考价值。
// https://www.geeksforgeeks.org/remove-duplicates-from-an-unsorted-linked-list/
#include <bits/stdc++.h>
using namespace std;
struct linked_list {
int data;
struct linked_list* next;
};
typedef struct linked_list node;
void print (node* n) {
while (n != NULL) {
cout<< n->data<< "->";
n = n->next;
}
}
node* insert(node* head, int n) {
node* temp = (node*)malloc(sizeof(node*));
temp->data = n;
temp->next = head;
head = temp;
return head;
}
void remove(node* head) {
unordered_set <int> s;
node* temp = head, *prev = head;
while (temp) {
if (s.find(temp->data) != s.end()) {
prev->next = temp->next;
}
else {
s.insert(temp->data);
prev=temp;
}
temp = temp->next;
}
}
int main() {
int n;
node* head = NULL;
while (true) {
cout<< "Enter the elements, and -999 to stop: ";
cin>>n;
if (n==-9)
break;
else
head=insert(head,n);
}
print(head);
remove(head);
cout<< "\n";
print(head);
}
以上是关于c_cpp 从未排序的链接列表中删除重复项的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp 从已排序的链接列表中删除重复项
c_cpp 83.从排序列表中删除重复项
c_cpp 给定已排序的链接列表,删除所有具有重复数字的节点,只留下原始列表中的不同数字。
c_cpp 从排序列表中删除重复项IIhttp://oj.leetcode.com/problems/remove-duplicates-from-sorted-list-ii/
c_cpp 26.从排序数组中删除重复项 - DifficultyEasy - 2018.9.5
c_cpp 给定一个已排序的链表,删除所有重复项,使每个元素只出现一次。