码迷,mamicode.com
首页 >  
搜索关键字:single    ( 5020个结果
[LeetCode]Single Number
Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without using...
分类:其他好文   时间:2015-04-26 09:14:50    阅读次数:108
Java [leetcode 10] Regular Expression Matching
问题描述:Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding ele...
分类:编程语言   时间:2015-04-25 22:41:59    阅读次数:172
leetcode 5. 两个链表逐个元素相加 Add Two Numbers
问题:Add Two Numbers 难度-MediumYou 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 nu...
分类:其他好文   时间:2015-04-25 18:27:50    阅读次数:130
scrollLeft() 妙用 鼠标移动 反方向图片滚动
实例:http://www.lcefox.com.cn//page/single/mousemove/ scrollLeft,平时我们是比较少使用的 不过不常使用不代表就不能用,其实运动 得当能够省去很多代码                         *{margin:0;padding:0;}         html,body{width...
分类:移动开发   时间:2015-04-25 15:10:14    阅读次数:143
iOS开发之自定义一个单例
iOS开发之自定义一个单例这里我使用宏:// .h#define single_interface(class) + (class *)shared##class;// .m// \ 代表下一行也属于宏// ## 是分隔符#define single_implementation(class) \s...
分类:移动开发   时间:2015-04-24 22:27:09    阅读次数:214
单例模式
package com.eyugame.modle; /** * 饿汉式单利模式 * @author JYC506 * */ public class Single { private static Single single=new Single(); public Single getInstance(){ return single;...
分类:其他好文   时间:2015-04-24 21:09:24    阅读次数:161
UVa12096 - The SetStack Computer
The computer op erates on a single stack of sets, which is initially empty. After each op eration, thecardinality of the topmost set on the stack is o...
分类:其他好文   时间:2015-04-24 20:52:45    阅读次数:126
sublime_text 3 注册序列号
-----?BEGIN?LICENSE?---- Andrew?Weber Single?User?License EA7E-855605 813A03DD?5E4AD9E6?6C0EEB94?BC99798F 942194A6?02396E98?E62C9979?4BB979FE 91424C9D?A45400BF?F6747D88?2FB88078 90F5...
分类:其他好文   时间:2015-04-24 17:00:17    阅读次数:107
leetcode136:single number I&II 及拓展
Single Number I给定一个数组,除了一个元素出现一次之外,其余的元素都出现两次。找出这个元素分析:只要将所有的元素都异或一次,最后的结果就是这个出现一次数。代码:int singleNumber(int A[], int n) { int num; int i; num=A[0]; for(i=1;i<n;i++) { num=nu...
分类:其他好文   时间:2015-04-24 12:44:02    阅读次数:168
Java for LeetCode 002 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 ...
分类:编程语言   时间:2015-04-23 22:54:56    阅读次数:140
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!