谷歌笔试题 --- 环状链表去重

编码实现环状单向链表(尾指针直接指向头指针,中间没有空节点),去除连续的重复元素的操作。

比如:1(头)->2->2->3->3->1->1(头) 去除以后的结果是1->2->3,注意头尾的1也要去掉一个。


//时间复杂度为O(N)
//空间复杂度为O(1)

//代码如下:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <climits>
#include <cmath>
#include <queue>
#include <cassert>
#include <algorithm>
#define MAXN 10010
#define RST(N)memset(N, 0, sizeof(N))
using namespace std;

typedef int data_t;

typedef struct ListNode
{
    data_t data;
    struct ListNode *next;
}LNode, *pNode;

pNode Create(int n, int *hashTable)
{
    pNode head = NULL;
    pNode p1 = NULL, p2 = NULL;
    p1 = p2 = (pNode)malloc(sizeof(LNode));
    while(n--)
    {
        cin >> p1->data;
        hashTable[p1->data]++;   //统计
        if(head == NULL)
            head = p1;
        else
            p2->next = p1;
        p2 = p1;
        p1 = (pNode)malloc(sizeof(LNode));
    }
    p2->next = head;    //指向头
    return head;
}

void uniqueListNode(pNode head, int *hashTable)
{
    assert(head != NULL);
    pNode pre = head;
    pNode cur = head->next;
    while(cur != head && cur != NULL)   //去重
    {
        pNode p = cur;
        pNode Next = cur->next;
        if(hashTable[cur->data] == 1)
            pre = cur;
        else if(hashTable[cur->data] > 1)
        {
            hashTable[cur->data]--;
            pre->next = Next;
            free(p);    //释放
        }
        cur = Next;
    }
}

int main()
{
    int n;
    while(cin >> n)
    {
        int hashTable[MAXN] = {0};   //hash存储出现的次数
        pNode head = Create(n, hashTable);    //构造一个环状单链表
        uniqueListNode(head, hashTable);   //去重
        /***** result *****/
        cout << head->data << "->";
        for(pNode p=head->next; p!=head; p=p->next)
        {
            cout << p->data;
            if(p->next != head) cout << "->";
            else cout << endl;
        }
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值