#includevoid ShellSort(int *a,int length){ int
jump=length; int temp=0; int change=1; while(jump>0) //while1 { jump=jump/2;
change=1; /***************...
分类:
其他好文 时间:
2014-06-07 03:53:30
阅读次数:
243
——积累工作中用到的SQL1、增加和删除一列写法: --增加一列 alter table 表名 add 列名 类型; --删除一列 alter table 表名 drop column 列名 ;例如: --增加一列 alter table TB_TEMP add COL_ID VARCHAR2(40); --删除一列...
分类:
数据库 时间:
2014-06-05 10:17:14
阅读次数:
340
交换两个变量:例如num1=5,num2=6→num1=6,num=5
怎么样?是不是觉得灰常简单,你是不是用下面的方法做的:
int num1=5;
int num2=6;
int temp=num1;
num1=num2;
num2=temp;
Console.WriteLine("num1={0},num2={1}",num1,num2);
好吧!你赢了!你做的非常对!就就是...
分类:
其他好文 时间:
2014-06-03 01:51:43
阅读次数:
225
快速幂水过,贴一下模版。const mo=100003;var
x,y,n,m:int64;function power(num,times:int64):int64; var temp:int64; begin if
times=1 then exit(num); temp:=power(num,...
分类:
其他好文 时间:
2014-06-02 13:29:03
阅读次数:
284
解决办法
--创建中转临时表空间
2.createtemporarytablespaceTEMP02TEMPFILE‘/u01/app/oracle/oradata/perm/temp02.dbf‘SIZE1024MREUSEAUTOEXTENDONNEXT640KMAXSIZEUNLIMITED;
--改变缺省临时表空间为刚刚创建的新临时表空间temp02
3.alterdatabasedefaulttemporarytablespace..
分类:
其他好文 时间:
2014-06-02 04:01:51
阅读次数:
1213
收集数据库信息时候报ORA-01652错如下
SQL>EXECDBMS_STATS.gather_database_stats;
BEGINDBMS_STATS.gather_database_stats;END;
*
ERRORatline1:
ORA-01652:unabletoextendtempsegmentby128intablespaceTEMP01
ORA-06512:at"SYS.DBMS_STATS",line13210
ORA-06512:at"SYS..
分类:
其他好文 时间:
2014-06-02 03:20:19
阅读次数:
316
/// ///
http://www.weather.com.cn/data/sk/101280601.html ///
{"weatherinfo":{"city":"深圳","cityid":"101280601","temp":"32","WD":"西南风","WS":"4级...
分类:
Web程序 时间:
2014-06-01 23:55:55
阅读次数:
809
闭包是指有权访问另一个函数作用域中的变量的函数。 这里随意写个最简单的小例子: 1
//这是闭包的一个基本例子 2 3 function outter( ){ 4 5 var temp = 0; //不加var则是全局变量! 6 7
function inner( ...
分类:
Web程序 时间:
2014-05-31 13:57:56
阅读次数:
282
水题,不过要想0ms过还是有个技巧的:#include #include using
namespace std;int main(){ int score[101]; int t,t1,temp; while(cin>>t) {
//memset(score,...
分类:
其他好文 时间:
2014-05-30 16:53:11
阅读次数:
268
快排,从小到大排序 1 void quicksort(int a[],int low,int
high) 2 { 3 int i=low; 4 int j=high; 5 int temp=a[i]; 6
if(i=temp&&i<j) j--; ...
分类:
其他好文 时间:
2014-05-30 08:03:25
阅读次数:
268