- 博客(100)
- 资源 (9)
- 收藏
- 关注
原创 【LeetCode】Combination Sum && II
Combination Sum Total Accepted: 17172 Total Submissions: 64746My SubmissionsGiven a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the ca
2014-08-29 23:06:47 669
原创 【LeetCode】Reverse Linked List II
Reverse Linked List II Total Accepted: 15366 Total Submissions: 59341My SubmissionsReverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->
2014-08-17 11:40:35 538
原创 【LeetCode】Convert Sorted List to Binary Search Tree
Convert Sorted List to Binary Search Tree Total Accepted: 16035 Total Submissions: 59053My SubmissionsGiven a singly linked list where elements are sorted in ascending order, convert it
2014-08-17 11:36:45 608
原创 【LeetCode】Partition List
Partition List Total Accepted: 14597 Total Submissions: 54894My SubmissionsGiven a linked list and a value x, partition it such that all nodes less than x come before nodes greater than
2014-08-16 23:42:07 489
原创 【LeetCode】Remove Duplicates from Sorted List & Remove Duplicates from Sorted List II
Remove Duplicates from Sorted List Total Accepted: 22211 Total Submissions: 63769My SubmissionsGiven a sorted linked list, delete all duplicates such that each element appear only once.
2014-08-16 00:01:36 607
原创 【LeetCode】Merge Two Sorted Lists & Merge k Sorted Lists
Merge Two Sorted Lists Total Accepted: 20769 Total Submissions: 62658My SubmissionsMerge two sorted linked lists and return it as a new list. The new list should be made by splicing toge
2014-08-15 23:03:58 475
原创 【LeetCode】 Rotate List
Rotate List Total Accepted: 13773 Total Submissions: 62790My SubmissionsGiven a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->
2014-08-15 22:36:27 465
原创 【LeetCode】Remove Nth Node From End of List
Remove Nth Node From End of List Total Accepted: 17965 Total Submissions: 60372My SubmissionsGiven a linked list, remove the nth node from the end of list and return its head.For examp
2014-08-14 22:22:17 439
原创 【LeetCode】Flatten Binary Tree to Linked List
Flatten Binary Tree to Linked List Total Accepted: 18516 Total Submissions: 66328My SubmissionsGiven a binary tree, flatten it to a linked list in-place.For example,Given 1
2014-08-11 23:24:12 481
原创 【LeetCode】Copy List with Random Pointer
Copy List with Random Pointer Total Accepted: 16149 Total Submissions: 70123My SubmissionsA linked list is given such that each node contains an additional random pointer which could poi
2014-08-11 22:53:43 459
原创 【LeetCode】Reverse Words in a String
Reverse Words in a String Total Accepted: 24045 Total Submissions: 171847My SubmissionsGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",
2014-08-04 22:54:32 516
原创 【LeetCode】Maximal Rectangle
参考链接http://blog.csdn.net/littlestream9527/article/details/19641013题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/71
2014-07-06 21:56:22 521
原创 【LeetCode】Longest Consecutive Sequence
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-06-19 13:04:44 490
原创 【leetcode】Largest Rectangle in Histogram
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-06-19 11:39:31 523
转载 十道海量数据处理面试题与十个方法大总结
原文http://blog.csdn.net/v_july_v/article/details/6279498
2014-06-11 18:57:10 564
转载 教你如何迅速秒杀掉:99%的海量数据处理面试题
原文出处:http://blog.csdn.net/v_july_v/article/details/7382693
2014-06-11 18:55:16 531
原创 【LeetCode】Word Search
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-06-07 14:26:45 494
原创 面试时需要马上就能默写出函数
/*编译环境CFree 5.0博客地址:http://blog.csdn.net/Snowwolf_Yang需要能够快速默写的函数 */#include #include using namespace std;//************************************二分查找 //输入为升序 int binarySearch(int a[], int n,
2014-05-30 16:56:55 913
转载 删除K个数字,使剩下的数字串最大
题目:一个n位的数,去掉其中的k位,问怎样去掉使得留下来的那个(n-k)位的数最大?分析:可以直接用贪心来求解,每次寻找从头开始的连续递减序列,删除递减序列的最后一个元素,重复K次,最后剩下的数字串组成的数字最大。比如:“13787323”第一次,递减序列只有1,删除1,得到3787323第二次,递减序列只有3,删除3,得到787323第三次
2014-05-29 15:05:29 1766 1
原创 【LeetCode】Merge Intervals && Insert Interval
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-29 14:09:56 543
原创 【LeetCode】Count and Say
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-28 17:16:24 435
原创 【LeetCode】Restore IP Addresses
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-28 16:48:20 486
原创 【LeetCode】ZigZag Conversion
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-28 10:26:22 489
原创 【LeetCode】First Missing Positive
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-26 21:55:42 472
原创 【LeetCode】Clone Graph
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-26 20:14:41 501
原创 【LeetCode】Multiply Strings
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-24 22:36:02 429
原创 【LeetCode】Edit Distance
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-24 20:38:01 492
原创 【LeetCode】Longest Common Prefix
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-24 19:44:43 488
原创 【LeetCode】Valid Sudoku
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-24 16:22:33 541
原创 【LeetCode】Recover Binary Search Tree
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-23 20:19:26 592
原创 【LeetCode】Candy
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-23 15:05:22 643
原创 【LeetCode】Substring with Concatenation of All Words
参考链接http://www.cnblogs.com/Rosanna/p/3444156.html题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API
2014-05-22 20:55:28 576
原创 【LeetCode】Palindrome Partitioning I && II
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-22 16:08:54 499
原创 【LeetCode】word break I && II
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-22 10:55:09 643
原创 【LeetCode】Interleaving String
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-21 17:08:54 516
原创 【LeetCode】Scramble String
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-21 16:20:00 525
原创 【LeetCode】Surrounded Regions
参考链接http://blog.csdn.net/doc_sgl/article/details/11836967http://blog.csdn.net/pickless/article/details/12074363题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库htt
2014-05-21 14:22:02 425
原创 【LeetCode】Longest Palindromic Substring
参考链接http://blog.csdn.net/feliciafay/article/details/16984031http://leetcode.com/2011/11/longest-palindromic-substring-part-ii.html题目描述题目分析总结代码示例推荐学习C+
2014-05-21 10:16:33 529
原创 【LeetCode】Median of Two Sorted Arrays
参考链接题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询http://www.cplusplus.com/map使用方法htt
2014-05-20 16:09:27 419
原创 【LeetCode】word ladder I&& II
参考链接http://www.cnblogs.com/x1957/p/3274819.html题目描述题目分析总结代码示例推荐学习C++的资料C++标准函数库http://download.csdn.net/detail/chinasnowwolf/7108919在线C++API查询
2014-05-20 09:44:05 702
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人