程序员面试金典2.1:编写代码,移除未排序的链表中的重复节点

2.1编写代码,移除未排序的链表中的重复节点

解法一:如果不得使用临时缓冲区,该怎么解决?

要想移除链表中的重复节点,我们需要设法记录有哪些是重复的。这里只需要使用到一个简单的散列表。

在下面的解法中,我们会直接迭代访问整个链表,将每个节点加入到散列表。若发现有重复的元素,将该节点从链表中移除,然后继续迭代。这个题目使用了链表,因此只需要扫描一次就能搞定。

/**
 * 
 */
package project02;

import java.util.Hashtable;

import util.LinkedListNode;

/**
 * @author JInShuangQi
 *
 * 2015年8月30日
 */
public class E01DeleteDupsNumber {
	private LinkedListNode<Integer> head;
	private LinkedListNode<Integer> tail;
	private int size;
	
	 // 尾部插入  
    public boolean addTail(int data) { 
        if (this.head == null) { 
            this.head = new LinkedListNode<Integer>(null, data, null); 
            this.tail = this.head; 
        } else { 
        	LinkedListNode<Integer> newnode = new LinkedListNode<Integer>(this.tail, data, null); 
            this.tail.next = newnode; 
            this.tail = newnode; 
        } 
        this.size++; 
       
        return true; 
    } 
    public String toString() { 
        if (this.isEmpty()) 
            return "[]"; 
        else { 
            StringBuffer st = new StringBuffer("["); 
            for (LinkedListNode<Integer> curent = this.head; curent != null; curent = curent.next) 
                st.append(curent.data.toString() + " ,"); 
            st.append("]"); 
            return st.toString(); 
        } 
    } 
    public boolean isEmpty() { 
        return this.size == 0; 
    } 

	public void deleteDups(LinkedListNode<Integer> n){
		Hashtable<Integer, Boolean> table = new Hashtable<Integer, Boolean>();
		LinkedListNode<Integer> previous = null;
		while(n != null){
			if(table.containsKey(n.data)){
				previous.next = n.next;
			}else{
				table.put(n.data, true);
				previous = n;
			}
			n =n.next;
		}
		while(head!=null){
			System.out.println(head.data.toString());
			head= head.next;
		}
	}
	public void deleteDups2(LinkedListNode<Integer> head){
		if(head == null)
			return;
		LinkedListNode<Integer> current = head;
		while(current != null){
			//移除后续值相同的所有节点
			LinkedListNode<Integer> runner = current;
			while(runner.next != null){
				if(runner.next.data == current.data){
					runner.next = runner.next.next;
				}else{
					runner = runner.next;
				}
			}
			current= current.next;
		}
		while(head!=null){
			System.out.println(head.data.toString());
			head= head.next;
		}
	}
	public static void main(String[] args){
		
		E01DeleteDupsNumber test = new E01DeleteDupsNumber();
		test.addTail(1);
		test.addTail(2);
		test.addTail(3);
		test.addTail(3);
		test.addTail(4);
		test.addTail(1);
		
		test.deleteDups2(test.head);
		
	}
}
上述代码含有测试用例,deleteDups()的时间复杂度为O(N),其中N为链表节点数目。


解法二:不使用缓冲区

如不借助额外的缓冲区,可以用两个指针来迭代:current迭代访问整个链表,runner用于检查后续的节点是否重复

上述代码中的deleteDups2()

该代码的空间复杂度为O(1),时间复杂度为O(N2)

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

互联网极客

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值