码迷,mamicode.com
首页 >  
搜索关键字:subsets ii    ( 6815个结果
LeetCode: Subsets [078]
class Solution { public: void dfs(vector<vector >&result, vectorcombination, vector&candidates, int kth, int k, int index2add){ // 当前正在确定组合中的第kth个数,将把候选集candidates中index2add索引位的值作为第kth个数加到组合中 combination.push_back(ca...
分类:其他好文   时间:2014-06-07 01:21:47    阅读次数:220
C++学习笔记17,构造函数体内初始化数据成员与构造函数初始化器的区别(一)
在构造体内初始化数据成员是最常见的方法。 例如: #include using namespace std; class A { private: int i; string s; public: A(int ii,string ss){ //在构造函数体内初始化数据成员 i=ii; s=ss; cout<<"ctor:i="<<i<<",s="<<s<<endl; ...
分类:编程语言   时间:2014-06-05 01:00:02    阅读次数:219
lwIP移植笔记 - OS篇
lwIP作为RTOS准标配的TCP/IP,在我们编写网络模块时,经常用到。    本移植笔记使用lwIP的版本为V1.4.1。    MDK:            V4.0+    RTOS:          μC/OS-II V2.91    Eval-Board: LPC1752    Ethernet:     ENC28J60    移植lwIP到OS其实就是实现sys.h的过程。...
分类:其他好文   时间:2014-06-04 21:52:32    阅读次数:635
LeetCode: Remove Duplicates from Sorted Array II [080]
【题目】 Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For example, Given sorted array A = [1,1,1,2,2,3], Your function should return length = 5, and A is now [1,1,2,2,3]. 【题意】 给定一个有序数组,给数组去重,和Remove Duplicates from...
分类:其他好文   时间:2014-06-03 05:36:24    阅读次数:219
LeetCode: Search in Rotated Sorted Array II [081]
【题目】 Follow up for "Search in Rotated Sorted Array": What if duplicates are allowed? Would this affect the run-time complexity? How and why? Write a function to determine if a given target is in the array. 【题意】 在“Search in Rotated Sorted Array”的基...
分类:其他好文   时间:2014-06-03 01:55:38    阅读次数:173
μCOS-II系统之事件(event)的使用规则及MUTEX实例
*************************************************************************************************************************** 作者:EasyWave 时间:2014.05.31 类别:μC/OS-II-操作系统...
分类:其他好文   时间:2014-06-01 09:39:49    阅读次数:356
μCOS-II系统之事件(event)的使用规则及Semaphore实例
*************************************************************************************************************************** 作者:EasyWave                                                时间:2014.05.31...
分类:其他好文   时间:2014-06-01 09:13:14    阅读次数:258
μCOS-II系统之事件(event)的使用规则及Semaphore的互斥量用法
*************************************************************************************************************************** 作者:EasyWave                                                时间:2014.05.31...
分类:其他好文   时间:2014-06-01 09:07:52    阅读次数:305
LeetCode: Remove Duplicates from Sorted List II [083]
【题目】 Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example, Given 1->2->3->3->4->4->5, return 1->2->5. Given 1->1->1->2->3, return 2->3. 【题意】 给定一个有序链表,删出其中重复出现的值...
分类:其他好文   时间:2014-05-31 21:14:11    阅读次数:333
Leetcode 树 Populating Next Right Pointers in Each Node II
本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenliePopulating Next Right Pointers in Each Node IITotal Accepted:9695Total Submissions:32965Follow up...
分类:其他好文   时间:2014-05-31 02:59:18    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!