2013年3月23日

算法 删除单链表中重复元素

摘要: Write code to remove duplicates from an unsorted linked list.FOLLOW UPHow would you solve this problem if a temporary buffer is not allowed?package com;public class Test { private static class LinkedListNode { private char c; private LinkedListNode next; LinkedListNode(char c){ this.c = c; } ... 阅读全文

posted @ 2013-03-23 11:17 waxili 阅读(241) 评论(0) 推荐(0) 编辑

导航