面试中的链表操作

1.单链表的创建和遍历:

public class LinkList {
    public Node head;
    public Node current;

    //方法:向链表中添加数据
    public void add(int data) {
        //判断链表为空的时候
        if (head == null) {//如果头结点为空,说明这个链表还没有创建,那就把新的结点赋给头结点
            head = new Node(data);
            current = head;
        } else {
            //创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)
            current.next = new Node(data);
            //把链表的当前索引向后移动一位
            current = current.next;   //此步操作完成之后,current结点指向新添加的那个结点
        }
    }

    //方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历
    public void print(Node node) {
        if (node == null) {
            return;
        }

        current = node;
        while (current != null) {
            System.out.println(current.data);
            current = current.next;
        }
    }


    class Node {
        //注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。
        int data; //数据域
        Node next;//指针域

        public Node(int data) {
            this.data = data;
        }
    }


    public static void main(String[] args) {
        LinkList list = new LinkList();
        //向LinkList中添加数据
        for (int i = 0; i < 10; i++) {
            list.add(i);
        }

        list.print(list.head);// 从head节点开始遍历输出
    }

}

2.求单链表中节点的个数:

//方法:获取单链表的长度
    public int getLength(Node head) {
        if (head == null) {
            return 0;
        }

        int length = 0;
        Node current = head;
        while (current != null) {
            length++;
            current = current.next;
        }

        return length;
    }

3.查找单链表中倒数第k个节点:

    1.

public int findLastNode(int index) {  //index代表的是倒数第index的那个结点

        //第一次遍历,得到链表的长度size
        if (head == null) {
            return -1;
        }

        current = head;
        while (current != null) {
            size++;
            current = current.next;
        }

        //第二次遍历,输出倒数第index个结点的数据
        current = head;
        for (int i = 0; i < size - index; i++) {
            current = current.next;
        }

        return current.data;
    }

    2.

public Node findLastNode(Node head, int index) {

        if (node == null) {
            return null;
        }

        Node first = head;
        Node second = head;

        //让second结点往后挪index个位置
        for (int i = 0; i < index; i++) {
            second = second.next;
        }

        //让first和second结点整体向后移动,直到second结点为Null
        while (second != null) {
            first = first.next;
            second = second.next;
        }

        //当second结点为空的时候,此时first指向的结点就是我们要找的结点
        return first;
    }

    判断异常:

public Node findLastNode(Node head, int k) {
        if (k == 0 || head == null) {
            return null;
        }

        Node first = head;
        Node second = head;

        //让second结点往后挪k-1个位置
        for (int i = 0; i < k - 1; i++) {
            System.out.println("i的值是" + i);
            second = second.next;
            if (second == null) { //说明k的值已经大于链表的长度了
                //throw new NullPointerException("链表的长度小于" + k); //我们自己抛出异常,给用户以提示
                return null;
            }
        }

        //让first和second结点整体向后移动,直到second走到最后一个结点
        while (second.next != null) {
            first = first.next;
            second = second.next;
        }

        //当second结点走到最后一个节点的时候,此时first指向的结点就是我们要找的结点
        return first;
    }

4.查找单链表中的中间节点:

//方法:查找链表的中间结点
    public Node findMidNode(Node head) {

        if (head == null) {
            return null;
        }

        Node first = head;
        Node second = head;
        //每次移动时,让second结点移动两位,first结点移动一位
        while (second != null && second.next != null) {
            first = first.next;
            second = second.next.next;
        }
        
        //直到second结点移动到null时,此时first指针指向的位置就是中间结点的位置
        return first;
    }

5.合并两个有序的单链表,合并之后依然有序:

//两个参数代表的是两个链表的头结点
    public Node mergeLinkList(Node head1, Node head2) {

        if (head1 == null && head2 == null) {  //如果两个链表都为空
            return null;
        }
        if (head1 == null) {
            return head2;
        }
        if (head2 == null) {
            return head1;
        }

        Node head; //新链表的头结点
        Node current;  //current结点指向新链表

        // 一开始,我们让current结点指向head1和head2中较小的数据,得到head结点
        if (head1.data < head2.data) {
            head = head1;
            current = head1;
            head1 = head1.next;
        } else {
            head = head2;
            current = head2;
            head2 = head2.next;
        }

        while (head1 != null && head2 != null) {
            if (head1.data < head2.data) {
                current.next = head1;  //新链表中,current指针的下一个结点对应较小的那个数据
                current = current.next; //current指针下移
                head1 = head1.next;
            } else {
                current.next = head2;
                current = current.next;
                head2 = head2.next;
            }
        }

        //合并剩余的元素
        if (head1 != null) { //说明链表2遍历完了,是空的
            current.next = head1;
        }

        if (head2 != null) { //说明链表1遍历完了,是空的
            current.next = head2;
        }

        return head;
    }

6.单链表的反转:

//方法:链表的反转
    public Node reverseList(Node head) {

        //如果链表为空或者只有一个节点,无需反转,直接返回原链表的头结点
        if (head == null || head.next == null) {
            return head;
        }

        Node current = head;
        Node next = null; //定义当前结点的下一个结点
        Node reverseHead = null;  //反转后新链表的表头

        while (current != null) {
            next = current.next;  //暂时保存住当前结点的下一个结点,因为下一次要用

            current.next = reverseHead; //将current的下一个结点指向新链表的头结点
            reverseHead = current;  

            current = next;   // 操作结束后,current节点后移
        }

        return reverseHead;
    }

7.从尾到头打印单链表:

    1.

//方法:从尾到头打印单链表
    public void reversePrint(Node head) {

        if (head == null) {
            return;
        }

        Stack<Node> stack = new Stack<Node>();  //新建一个栈
        Node current = head;

        //将链表的所有结点压栈
        while (current != null) {-
            stack.push(current);  //将当前结点压栈
            current = current.next;
        }

        //将栈中的结点打印输出即可
        while (stack.size() > 0) {
            System.out.println(stack.pop().data);  //出栈操作
        }
    }

    2.

public void reversePrint(Node head) {


        if (head == null) {
            return;
        }
        reversePrint(head.next);
        System.out.println(head.data);
    }

8.判断单链表是否有环:

//方法:判断单链表是否有环
    public boolean hasCycle(Node head) {

        if (head == null) {
            return false;
        }

        Node first = head;
        Node second = head;

        while (second != null) {
            first = first.next;   //first指针走一步
            second = second.next.next;  second指针走两步

            if (first == second) {  //一旦两个指针相遇,说明链表是有环的
                return true;
            }
        }

        return false;
    }

9.取出有环链表中,环的长度:

//方法:判断单链表是否有环。返回的结点是相遇的那个结点
    public Node hasCycle(Node head) {

        if (head == null) {
            return null;
        }

        Node first = head;
        Node second = head;

        while (second != null) {
            first = first.next;
            second = second.next.next;

            if (first == second) {  //一旦两个指针相遇,说明链表是有环的
                return first;  //将相遇的那个结点进行返回
            }
        }

        return null;
    }

    //方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点
    public int getCycleLength(Node node) {

        if (head == null) {
            return 0;
        }

        Node current = node;
        int length = 0;

        while (current != null) {
            current = current.next;
            length++;
            if (current == node) {  //当current结点走到原点的时候
                return length;
            }
        }

        return length;
    }

10.单链表中,取出环的起点:

//方法:获取环的起始点。参数length表示环的长度
    public Node getCycleStart(Node head, int cycleLength) {

        if (head == null) {
            return null;
        }

        Node first = head;
        Node second = head;
        //先让second指针走length步
        for (int i = 0; i < cycleLength; i++) {
            second = second.next;
        }

        //然后让first指针和second指针同时各走一步
        while (first != null && second != null) {
            first = first.next;
            second = second.next;

            if (first == second) { //如果两个指针相遇了,说明这个结点就是环的起始点
                return first;
            }
        }

        return null;
    }

11.判断两个单链表相交的第一个节点:

//方法:求两个单链表相交的第一个交点
    public Node getFirstCommonNode(Node head1, Node head2) {
        if (head1 == null || head == null) {
            return null;
        }

        int length1 = getLength(head1);
        int length2 = getLength(head2);
        int lengthDif = 0;  //两个链表长度的差值

        Node longHead;
        Node shortHead;

        //找出较长的那个链表
        if (length1 > length2) {
            longHead = head1;
            shortHead = head2;
            lengthDif = length1 - length2;
        } else {
            longHead = head2;
            shortHead = head1;
            lengthDif = length2 - length1;
        }

        //将较长的那个链表的指针向前走length个距离
        for (int i = 0; i < lengthDif; i++) {
            longHead = longHead.next;
        }

        //将两个链表的指针同时向前移动
        while (longHead != null && shortHead != null) {
            if (longHead == shortHead) { //第一个相同的结点就是相交的第一个结点
                return longHead;
            }
            longHead = longHead.next;
            shortHead = shortHead.next;
        }

        return null;
    }


    //方法:获取单链表的长度
    public int getLength(Node head) {
        if (head == null) {
            return 0;
        }

        int length = 0;
        Node current = head;
        while (current != null) {

            length++;
            current = current.next;
        }

        return length;

}

转载于:https://my.oschina.net/LeBronJames/blog/1927222

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值