码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
三个数由小到大排序
1 #include 2 3 int main(void) 4 { 5 int a,b,c; 6 int temp; 7 printf("please input a b c\n"); 8 scanf("%d %d %d",&a,&b,&c); 9 10 if(a>b)11 {12 te...
分类:其他好文   时间:2014-07-22 23:00:52    阅读次数:353
所有运行命令指令大全
简介/操作打开开始菜单,其中的“运行”是通向程序的快捷途径,输入特定的命令后,即可快速的打开Windows的程序,熟练的运用它,将给我们的操作带来诸多便捷。接下来我将介绍各个运行指令:运行的界面,在打开中输入口令:具体运行口令%temp% 打开零时文件夹. C:\Documents and Sett...
分类:其他好文   时间:2014-05-08 21:34:58    阅读次数:447
Leetcode: Remove Duplicates from Sorted List
遇到的问题:input{1,1,1}, output{1,1}, expected{1}, 原因在于若temp.val==temp.next.val, 则需要temp.next=temp.next.next, 这时候就不要temp=temp.next了注意停止条件不光是temp!=null,还应该有...
分类:其他好文   时间:2014-05-05 22:47:08    阅读次数:454
2.模拟器的使用
add-ons:android开发需要的第三方文件 docs:Andriod的文档。包括开发指南、API等 extras:附件文档 platforms:一系列Andriod平台版本 platform-tools:开发工具,在平台更新时可能更新 samples:例子 temp:缓存目录 tools:独...
分类:其他好文   时间:2014-05-04 19:52:36    阅读次数:535
ORA-32001:write to SPFILE requested but no SPFILE is in use问题的解决
在执行该命令时出现下列错误SYS@PROD>altersystemsetUTL_FILE_DIR=‘/home/oracle‘,‘/home/oracle/temp‘,‘/home/oracle/scripts‘scope=spfile;altersystemsetUTL_FILE_DIR=‘/home/oracle‘,‘/home/oracle/temp‘,‘/home/oracle/scripts‘scope=spfile*ERRORatline1:ORA-32001:wr..
分类:其他好文   时间:2014-05-04 17:08:06    阅读次数:386
插入排序
int temp = 0; for (int i = 1; i = 0; j-- ) { arr[j + 1] = arr[j]; if (temp...
分类:其他好文   时间:2014-05-03 22:27:43    阅读次数:245
理解指针
如题:理解指针VS如何看汇编代码(DEBUG状态) Debug->Windows->DisAssambly即可看到汇编窗口先看看C++代码int _tmain(int argc, _TCHAR* argv[]){ /* char temp[100] = "c:\abc\bcd\cde ...
分类:其他好文   时间:2014-05-02 06:02:18    阅读次数:276
整理,模板
组合数学、-排列组合数----sum求sum=sum*(m--)/i;int c(int n,int m)//n下标,m上标{ int sum=1; for(int i=1;in-m) m=n-m; int temp=n; for(int i=1;i1) { up[j]/=temp; d...
分类:其他好文   时间:2014-05-01 01:07:44    阅读次数:409
cpu数组不同的访问方式的性能测试
1:temp =  array[i]*i:  2410.0 ms 2:temp = GET(array,i) *i:  2410.0 ms 3:temp = get(array,i)*i:  2950.0 ms 4:int a = get(array,i);temp = a*i:  3340.0 ms 5:   int a = array[i];temp =  a*i;:  1990.0...
分类:其他好文   时间:2014-04-30 22:25:38    阅读次数:303
排序算法-冒泡——插入——快排
冒泡排序,往两个方向泡,一个往小泡,一个网大泡 #include #include #include void bubble_sort(int *a,int n){ int temp; for(int i=0;i<n;i++) for(int j=0;ja[j+1]){ temp=a[j]; a[j]=a[j+1]; ...
分类:其他好文   时间:2014-04-29 13:28:21    阅读次数:364
7776条   上一页 1 ... 775 776 777 778 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!