摘要:
1.Remove Nth Node From End of ListGiven a linked list, remove the nth node from the end of list and return its head.For example, Given linked list: ... 阅读全文
摘要:
转载自http://blog.csdn.net/steven30832/article/details/8259948待整理 阅读全文
摘要:
转载自http://blog.csdn.net/steven30832/article/details/8260189 动态规划有一个经典问题是最长公共子序列,但是这里的子序列不要求连续,如果要求序列是连续的,我们叫公共子串,那应该如何得到这个串呢? 最简单的方法就是依次比较,以某个串为母串,然... 阅读全文