码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
[LeetCode] Reverse Linked List II
The basic idea is as follows:Create anew_headthat points toheadand use it to locate the immediate node before them-th (notice that it is1-indexed) nod...
分类:其他好文   时间:2015-09-02 01:50:19    阅读次数:173
在Swift中检查API的可用性
http://www.cocoachina.com/swift/20150901/13283.html本文由CocoaChina译者ALEX吴浩文翻译自Use Your Loaf博客原文:Checking API Availability With SwiftSwift 2改进了检查API可用性的方...
分类:编程语言   时间:2015-09-02 01:48:41    阅读次数:256
pat1032. Sharing (25)
1032. Sharing (25)时间限制100 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueTo store English words, one method is to use linked lists and store a word...
分类:其他好文   时间:2015-09-02 00:37:16    阅读次数:213
[ngRepeat:dupes] Duplicates in a repeater are not
[ngRepeat:dupes] Duplicates in a repeater are not allowed. Use ‘track by‘ expression to specify uniq 在 ng-repeat中加track?by?$index...
分类:其他好文   时间:2015-09-01 21:39:20    阅读次数:181
poj 1742 Coins(dp之多重背包+多次优化)
DescriptionPeople in Silverland use coins.They have coins of value A1,A2,A3...An Silverland dollar.One day Tony opened his money-box and found there w...
分类:其他好文   时间:2015-09-01 21:37:00    阅读次数:343
poj 3176 Cow Bowling(dp基础)
DescriptionThe cows don't use actual bowling balls when they go bowling. They each take a number (in the range 0..99), though, and line up in a standa...
分类:其他好文   时间:2015-09-01 20:04:14    阅读次数:238
java collection 集合源码分析(三) map
TreeMap 首先看下TreeMap的头部声明的两个变量,TreeMap的排序利用红黑树进行 ????/** ?????*?The?comparator?used?to?maintain?order?in?this?tree?map,?or ?????*?null?if?it?use...
分类:编程语言   时间:2015-09-01 18:36:17    阅读次数:192
Booting LPC-Link2, Updating LPCXpresso firmware
Booting LPC-Link2The recommended way to use LPC-Link2 with the LPCXpresso IDE is to boot and soft load a debug firmware image at the start of a debug ...
分类:其他好文   时间:2015-09-01 16:47:23    阅读次数:801
django中添加用户
在django中添加用户,直接在auth_user表中添加会有问题,因为这里密码是加密的,可以通过manage.py shell加入创建User:1>>>fromdjango.contrib.auth.modelsimportUser2>>> user=User.objects.create_use...
分类:其他好文   时间:2015-09-01 16:30:20    阅读次数:130
一些很经典的JavaScript的问题
1、作用域(function() { var a = b = 5;})();console.log(b);输出:5陷阱是,在函数表达式中有两个赋值,但a是用关键字var 来声明的,这意味着a是局部变量,而b则被赋予为全局变量。另一个陷阱是,它并没有使用严格模式(use strict)。在函数里面,如...
分类:编程语言   时间:2015-09-01 13:57:40    阅读次数:202
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!