摘要:
我的思路:先求长度,每个长度长的遍历一次长度短的, 后看评论理解题意:第一个公共结点后面的都相同,所以可以先走长-短的差再比较。 public class Solution { public ListNode FindFirstCommonNode(ListNode pHead1, ListNode 阅读全文
摘要:
思路:两个指针,一个先指到k,两个一起往后移,一个指到尾时另一个在倒数k处。 public class Solution { public ListNode FindKthToTail(ListNode head,int k) { ListNode p = head; ListNode q = he 阅读全文
摘要:
判断输入的序列是否可以从确定栈中得到Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to 阅读全文
摘要:
//一元多项式的乘法和加法 import java.util.*; class Node{ int index; int coef; Node next = null; public Node(int coef, int index) { this.index = index; this.coef 阅读全文