#Region Project Attributes #ApplicationLabel: SwitchingWindow #VersionCode: 20140615 #VersionName: 'SupportedOrientations possible values: unspecif...
分类:
其他好文 时间:
2014-06-19 07:55:52
阅读次数:
281
插入 日期时间 循环插入declare total date:= trunc(sysdate-1) ; begin for i_count in 1..10000 LOOP insert into DQ_DATE(date_time) values ( total ); total...
分类:
数据库 时间:
2014-06-18 21:25:39
阅读次数:
302
上图是一个带标题栏的Activity。有些时候我们希望能去除这个标题栏,做法如下:1. 在res/values目录下面创建styles.xml。如果你已经有这个文件了,那么直接打开这个文件,添加如下代码: 2. 打开AndroidManifest.xml文件,在需要去除标题栏的acti...
分类:
移动开发 时间:
2014-06-18 20:49:34
阅读次数:
278
package com.rationalcoding.sort;import java.util.ArrayList;import java.util.Arrays;import java.util.concurrent.ExecutionException;import java.util.con...
分类:
编程语言 时间:
2014-06-18 20:33:45
阅读次数:
266
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be ...
分类:
其他好文 时间:
2014-06-18 17:39:11
阅读次数:
260
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].No...
分类:
其他好文 时间:
2014-06-18 17:32:02
阅读次数:
168
#Region Project Attributes #ApplicationLabel: MyFirstProgram #VersionCode: 1 #VersionName: 'SupportedOrientations possible values: unspecified, lan...
分类:
其他好文 时间:
2014-06-18 13:46:13
阅读次数:
254
if object_id('tempdb..#tt')>0 drop table #tt--模拟数据create table #tt (cc datetime)insert into #tt values('2013-02-01')insert into #tt values('2013-05-16...
分类:
其他好文 时间:
2014-06-17 14:06:19
阅读次数:
194
循环判断2个数组将相同的公共元素复制到新数组中即可 1 2 3 import java.util.Arrays; 4 5 public class count_same_number { 6 7 public static int[] join(int[] a,int[] b) 8 ...
分类:
编程语言 时间:
2014-06-17 00:22:18
阅读次数:
360
题目:Unique Binary Search TreesGivenn, how many structurally uniqueBST's(binary search trees) that store values 1...n?For example,Givenn= 3, there are a...
分类:
其他好文 时间:
2014-06-15 13:16:53
阅读次数:
202