码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
leetcode3--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 link...
分类:其他好文   时间:2015-03-21 15:39:18    阅读次数:118
【LeetCode】【C++】Wildcard Matching
题目‘?’ Matches any single character. ‘*’ Matches any sequence of characters (including the empty sequence).The matching should cover the entire input string (not partial).The function prototype should...
分类:编程语言   时间:2015-03-21 12:43:07    阅读次数:190
android:singleLine="true" 的意思(转载)
转自:http://blog.sina.com.cn/s/blog_72fad6270100tq0n.html设置单行显示。如果和layout_width一起使用,当文本不能全部显示时,后面用“…”来表示。如android:text="test_ singleLine "android:single...
分类:移动开发   时间:2015-03-21 12:30:23    阅读次数:510
iOS学习笔记(3)--初识UINavigationController(无storyboard)
纯代码创建导航控制器UINavigationController在Xcode6.1中创建single view application的项目,删除Main.storyboard文件,删除info.plist中main storyboard相关属性,依靠代码编写UI视图,研究导航控制器栈的原理。App...
分类:移动开发   时间:2015-03-21 06:20:02    阅读次数:248
单例模式
1. 单例模式以下是恶汉模式,类初始化的时候,就进行了new对象,如果没有调用getInstance方法,那么系统就提前消耗掉了无用内存 public class singleton { private static singleton sing = new single...
分类:其他好文   时间:2015-03-20 14:18:03    阅读次数:110
jboss7 参数过多无法提交
jboss 7 开发提示如下: More than the maximum number of request parameters (GET plus POST) for a single request ([512]) were detected.Any parameters beyond this limit have been ignored. To change th...
分类:其他好文   时间:2015-03-20 13:04:48    阅读次数:267
URAL 1297. Palindrome(输出最长回文子串--后缀数组)
Input The input consists of a single line, which contains a string of Latin alphabet letters (no other characters will appear in the string). String length will not exceed 1000 characters. Outpu...
分类:编程语言   时间:2015-03-19 22:09:51    阅读次数:176
Dialog集合
demo下载地址http://download.csdn.net/detail/metis100/8498401安卓开发一年,开始想整理些资料成库,以备日后快速开发。 第一天,整理了常用的dialog,包括:single Choice Dialog,Multiple choice Dialog,Input Dialog ,Progress Dialog…. 代码在云盘中 ,点击链接下载http:...
分类:其他好文   时间:2015-03-19 14:48:56    阅读次数:126
Javascript异步编程 Asynchronous JS: Callbacks, Listeners, Control Flow Libs and Promises
Javascript语言的执行环境是"单线程"(single thread)一次只能完成一件任务。如果有多个任务,就必须排队,前面一个任务完成,再执行后面一个任务Javascript语言将任务的执行模式分成两种:同步(Synchronous)和异步(Asynchronous)"异步模式"则完全不同,...
分类:编程语言   时间:2015-03-19 14:39:44    阅读次数:170
LeetCode-44 Wildcard Matching
'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).The matching should cover the entire input stri...
分类:其他好文   时间:2015-03-18 17:20:10    阅读次数:112
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!