码迷,mamicode.com
首页 > 其他好文 > 详细

链表模板总结

时间:2017-03-09 00:00:02      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:oid   image   tor   blog   link   exp   close   void   logs   

单链表:

public class ListNode {
  int val;
  ListNode next;
  ListNode (int val) {
    this.val = val;
  }
}

1、反转单链表

技术分享
public void reverseLinkedList(ListNode head) {
  ListNode pre = null;
  while (head != null) {
    ListNode next = head.next;
    head.next = pre;
    pre = head;
    head = next;
  }
  return pre;
}
View Code

 

2、寻找单链表的中点

技术分享
public ListNode findMid(ListNode head) {
  ListNode slow = head;
  ListNode fast = head;
  while (fast != null && fast.next != null) {
    fast = fast.next.next;
    slow = slow.next;
  }
  return slow;
}
View Code

 

链表模板总结

标签:oid   image   tor   blog   link   exp   close   void   logs   

原文地址:http://www.cnblogs.com/zhiyangjava/p/6523481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!