码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
leetcode single number
一、原题 Given an array of integers, every element appears twice except for one. Find that single one. int  singleNumber(int *nums, int numsSize) 二、举例来说 nums[numsSize] ::: nums[5] = {2, 1, 1, 1,...
分类:其他好文   时间:2015-06-08 23:22:13    阅读次数:146
IOS开发之自制城市选择器(省份+城市+区/县城)(storyboard版)
第一步:新建single工程CitySelectedDemo第二步:导入资源area.plist(千万勾选copy选项,后面附area.plist文件资源)第三步:设计mian.storyboard ——》拖拽UITextField控件(运行后点击此输入框会弹出选择器,选择我们想要的城市地址后结.....
分类:移动开发   时间:2015-06-08 23:18:22    阅读次数:282
[LeetCode] Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linke...
分类:其他好文   时间:2015-06-08 15:05:57    阅读次数:91
Add Two Numbers 2015年6月8日
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2015-06-08 12:57:49    阅读次数:163
iOS 标准单例的写法
- (single *)getSingle{     static single *s=nil;     static dispatch_once_t t;     dispatch_once(&t, ^{         s=[[single alloc]init];     });     return s; }...
分类:移动开发   时间:2015-06-08 11:37:43    阅读次数:176
LeetCode10 Regular Expression Matching
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:其他好文   时间:2015-06-07 20:08:33    阅读次数:144
[Practical.Vim(2012.9)].Drew.Neil.Tip21学习摘要
Vim has three kinds of Visual mode. In character-wise Visual mode, we can select anything from a single character up to a range of characters within a line or spanning multiple lines. This is suitable...
分类:系统相关   时间:2015-06-07 18:54:58    阅读次数:183
iOS传值-NSNotification
说明:通知在页面传值中,通知是非常简单便捷的方式,具体过程是,发布者发布通知到通知中心,订阅者从发布中心获得最新通知,具体结构如下图实现代码:1,新建Single View Application工程,新建一个SecondViewController,用于作为发送端2,在ViewController...
分类:移动开发   时间:2015-06-07 18:51:31    阅读次数:178
iOS block 回调
说明:本文是在了解block基础知识基础上的应用,假定阅读者已经具备block基础知识。目的:通过block回调方式将SecondViewController中的值传入到ViewController中,在某些时候,通过block回调,可以避免delegate的繁琐1,新建Single View Ap...
分类:移动开发   时间:2015-06-07 17:17:48    阅读次数:138
ACdream 1195 Sudoku Checker (暴力)
Sudoku CheckerTime Limit: 2000/1000MS (Java/Others)Memory Limit:128000/64000KB (Java/Others)SubmitStatusProblem DescriptionSudoku is a popular single ...
分类:其他好文   时间:2015-06-07 13:50:03    阅读次数:107
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!