自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 634

原创 【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 500

原创 【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 572

原创 【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 457

原创 【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 567

原创 【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 439

原创 【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 436

原创 【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 408

原创 【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 432

原创 【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 421

原创 【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 480

原创 【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 479

原创 【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 458

原创 【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 488

转载 十道海量数据处理面试题与十个方法大总结

原文http://blog.csdn.net/v_july_v/article/details/6279498

2014-06-11 18:57:10 528

转载 教你如何迅速秒杀掉:99%的海量数据处理面试题

原文出处:http://blog.csdn.net/v_july_v/article/details/7382693

2014-06-11 18:55:16 501

原创 【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 453

原创 面试时需要马上就能默写出函数

/*编译环境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 878

转载 删除K个数字,使剩下的数字串最大

题目:一个n位的数,去掉其中的k位,问怎样去掉使得留下来的那个(n-k)位的数最大?分析:可以直接用贪心来求解,每次寻找从头开始的连续递减序列,删除递减序列的最后一个元素,重复K次,最后剩下的数字串组成的数字最大。比如:“13787323”第一次,递减序列只有1,删除1,得到3787323第二次,递减序列只有3,删除3,得到787323第三次

2014-05-29 15:05:29 1711 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 510

原创 【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 406

原创 【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 461

原创 【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 457

原创 【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 438

原创 【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 470

原创 【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 404

原创 【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 462

原创 【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 457

原创 【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 511

原创 【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 562

原创 【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 600

原创 【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 544

原创 【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 477

原创 【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 612

原创 【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 484

原创 【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 494

原创 【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 395

原创 【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 501

原创 【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 391

原创 【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 674

The C++ standard Library C++ 标准函数库

The C++ standard Library C++ 标准函数库 各种标准函数的使用方法及例子

2014-03-27

PolarSSL源码,加密算法源代码

内含十分专业的代码,含测试用例。 AES,DES RSA SHA1 MD5

2014-03-15

uCOS-III移植到stm32

uCOS-III移植到stm32,测试可以使用

2013-09-16

kinetis k53 ucosIII 官方源代码

k53 k60 ucosIII官方源代码,k10,k53,k60都可用

2013-09-16

ucos III 官方源代码 stm32

ucos III 官方源代码 stm32,绝对可用

2013-09-16

ucos tcpip官方源代码

ucos tcpip官方源代码,stm32

2013-09-16

potplayer绿色视频播放器可播放摄像头

绿色视频播放软件,不用安装,可以播放绝大多数格式的视频,也可以直接播放摄像头。

2013-09-16

AvaFind绿色免安装

可以快速对硬盘里的文件进行查找,速度非常快,不用安装

2013-09-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除