码迷,mamicode.com
首页 >  
搜索关键字:insert all    ( 36718个结果
用UIScrollView产生视差效果
用UIScrollView产生视差效果效果:高级效果:源码:MoreInfoView.h + MoreInfoView.m//// MoreInfoView.h// YXCell//// Copyright (c) 2014年 Y.X. All rights reserved.//#impor...
分类:其他好文   时间:2014-06-26 17:12:14    阅读次数:300
UILabel混色显示
UILabel混色显示效果:源码://// RootViewController.m// ColorLabels//// Copyright (c) 2014年 Y.X. All rights reserved.//#import "RootViewController.h"#import "...
分类:其他好文   时间:2014-06-26 16:57:59    阅读次数:217
利用Lua实现二叉查找树并进行各种遍历
-- author : coder_zhang-- date : 2014-6-25root = nilfunction insert_node(number) if root == nil then root = {value = number, left = nil, ...
分类:其他好文   时间:2014-06-26 16:51:36    阅读次数:170
jquery小例子,点击显示个数
1 2 3 4 5 Insert title here 6 7 8 9 篮球10 排球11 羽毛球12 乒乓球13 14 15 16 17 29 30
分类:Web程序   时间:2014-06-26 16:43:15    阅读次数:195
Leetcode Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2014-06-26 15:50:35    阅读次数:176
LeetCode:Combinations
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For example, If n = 4 and k = 2, a solution is: [ [2,4], [3,4], [2,3], [1,2], [1,3...
分类:其他好文   时间:2014-06-26 14:06:02    阅读次数:252
SQL Server存储过程
create proc proc_test_insert --如果要修改这个存储过程的话只要给create 改为alter就行了 ( @p_name nvarchar(50), @p_age int, @p_email varchar(100), @p_addres nvarchar(100), @p_remarks nvarchar(100) --@num nvarchar ou...
分类:数据库   时间:2014-06-26 13:49:45    阅读次数:241
区间成员函数优先于与之对应的单元素成员函数
例子:使v1的内容和v2的后半部分相同的最简单操作是什么?看下面四个答案: ①v1.assign(v2.begin()+v2.size()/2,v2.end()); ②v1.clear();  copy(v2.begin()+v2.size()/2,v2.end(),back_inserter(v1)); ③v1.insert(v1.end(),v2.begin...
分类:其他好文   时间:2014-06-26 13:28:22    阅读次数:222
LeetCode: Palindrome Partitioning [131]
【题目】 Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. For example, given s = "aab", Return [ ["aa","b"], ["a","a","b"] ] 【题意】 给定一个字符串s, 要求对s进行...
分类:其他好文   时间:2014-06-26 13:21:59    阅读次数:182
oracle 10g/11g 命令对比,日志目录对比
??  oracle 10g/11g  命令对比,日志目录对比    oracle 11g 中不再建议使用的命令 Deprecated Command Replacement Commands crs_stat crsctl check cluster -all...
分类:数据库   时间:2014-06-26 07:42:07    阅读次数:530
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!