码迷,mamicode.com
首页 >  
搜索关键字:describe    ( 1114个结果
React Jest测试
一、 1 var jest = require('jest'); 2 3 jest.dontMock('../CheckboxWithLabel.js'); 4 describe('CheckboxWithLabel', function() { 5 it('changes the tex...
分类:其他好文   时间:2015-12-20 20:59:00    阅读次数:658
LeetCode - Merge k Sorted Lists
题目:Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.思路:1)直接利用Merge two sorted lists的代码,但超时了。原因是这个时间复杂...
分类:其他好文   时间:2015-12-20 14:38:17    阅读次数:95
LeetCode OJ:Merge k Sorted Lists(归并k个链表)
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.类似于归并2个链表,暴力一点的方法就是,每取出一个list就与以前的list归并返回merge后list,知...
分类:其他好文   时间:2015-12-15 22:42:59    阅读次数:246
[boost] build boost with intel compiler 16.0.XXX
IntroductionThere are few information about how to compile boost with Intel compiler. This article is to describe a simple command steps to let you get a boost library with Intel compiler support.Step...
分类:其他好文   时间:2015-12-05 07:15:05    阅读次数:147
[学点英语]扎克伯格给女儿的信,translation of zucherber's letter to her daughter( Chinese version)
A letter to our daughter 扎克伯格写给女儿的信Mark Zuckerberg·Tuesday, December 1, 2015Dear Max, 亲爱的玛克斯Your mother and I don't yet have the words to describe the...
分类:其他好文   时间:2015-12-05 07:13:40    阅读次数:503
MARK ZUCKERBERG, A letter to our daughter(转)
A letter to our daughterMARK ZUCKERBERG·WEDNESDAY, DECEMBER 2, 2015Dear Max,Your mother and I don't yet have the words to describe the hope you give u...
分类:其他好文   时间:2015-12-02 14:18:46    阅读次数:188
【IOS】NSUInteger
NSUIntegerUsed to describe an unsigned integer.DeclarationOBJECTIVE-Ctypedef unsigned long NSUInteger;DiscussionWhen building 32-bit applications, NSU...
分类:移动开发   时间:2015-12-02 12:35:26    阅读次数:139
Merge k Sorted Lists
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.如果直接遍历链表数组,时间复杂度为T(n)=T(n-1)+o(lenn);即合并前n-1个链表的时间+与第n...
分类:其他好文   时间:2015-11-28 10:27:30    阅读次数:155
sql: DUAL
FROM >dual is a table that contains a single row. The following outputfrom the DESCRIBE command shows the structure of the dual table, along with a qu...
分类:数据库   时间:2015-11-24 14:40:43    阅读次数:207
LeetCode 23 Merge k Sorted Lists
翻译合并K个已排序的链表,并且将其排序并返回。 分析和描述其复杂性。原文Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.代码我们采用分治的方法来解决这个问题,其有K个链表,不断将其划分(partition),再将其归并(merge)。划分的部分并不难,将...
分类:其他好文   时间:2015-11-12 18:16:18    阅读次数:275
1114条   上一页 1 ... 83 84 85 86 87 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!