06 2014 档案

摘要:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or... 阅读全文
posted @ 2014-06-27 10:19 weilq 阅读(228) 评论(0) 推荐(0)
摘要:在面试,笔试的过程中经常会遇到面试官问这种问题,实现单链表的倒置方法。现在对单链表的倒置犯法做个记录,方便自己以后查看。单链表的定义: 1 public class Node { 2 3 int v; 4 Node next; 5 public Node(){ ... 阅读全文
posted @ 2014-06-07 23:11 weilq 阅读(403) 评论(0) 推荐(0)