码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
sql while 遍历表
declare @n intdeclare @rowcount int declare @name varchar(50)create table #temp( id int identity(1,1), employeeName nvarchar(100))insert into #temp se...
分类:数据库   时间:2016-01-04 08:53:15    阅读次数:261
Jquery中Ajax异步请求中的async参数的作用
之前不知道这个参数的作用,上网找了前辈的博客,在此收录到自己的博客,希望能帮到更多的朋友: test.htmlasy.jsfunction testAsync{ var temp; $.ajax({ async: false, type : "GET", url : 'tet.php', compl...
分类:Web程序   时间:2016-01-03 18:22:33    阅读次数:138
php str_pad() 用法
$temp = str_pad(" ", 10000);for($i=0;$i<20;$i++){ echo $temp; echo $i; sleep(1);}
分类:Web程序   时间:2016-01-02 12:15:35    阅读次数:151
【Sorting Collection】
排序集锦各种排序算法,总结一下,一直在遗忘......【冒泡排序】就是下面这个鬼啦:c实现代码(升序):#includevoid BubbleSort(int *array,int num){ int i,j,temp; for(j=0;jarray[i]) //倒序就把...
分类:其他好文   时间:2016-01-02 07:00:47    阅读次数:178
DataStructure期末复习小tips
#includeusing namespace std;void main(){ int i, j; int s[] = { 1, 2, 3 }; int *temp = new int[5]; temp = s; for (i = 0; i < 5; i++) { cout << temp[i.....
分类:其他好文   时间:2016-01-01 12:52:11    阅读次数:232
解决EditorLineEnds.ttr被锁定导致Delphi2006-2010无法启动的问题
在批处理最后增加了启动Delphi的命令。将批处理和Delphi放在同一目录即可。?12345678910111213141516171819202122@ECHOOFFREMEntertempdirectory.%TEMP:~0,2%CD%TEMP%REMTrydeletepreviouslycr...
分类:Windows程序   时间:2016-01-01 00:19:41    阅读次数:257
冒泡排序和快速排序
1 冒泡排序void Bubble(int r[],int n){ int i,j,temp; for(i=0;ir[j+1]) { temp=r[j]; r[j]=r[j+1]; r[j+1]=temp; } }}改进算法void Bu...
分类:编程语言   时间:2015-12-30 22:07:01    阅读次数:209
DataTable分组求和【UP,UP,UP】
来来来,大家注意了,DataTable分组求和的简单方式'定义一个临时变量,用于判断某个分组是否已经求过和dim temp=""'求和的值dim sumValue'循环DataTablefor each dr in 网格部件1.DataTable.Rows '根据长度判当前这条数据所属的分组是否.....
分类:其他好文   时间:2015-12-29 14:34:24    阅读次数:152
Effective C++:条款25:考虑写出一个不抛异常的swap函数
(一)缺省情况下swap动作可由标准程序库提供的swap算法完毕:namespace std { template void swap(T& a, T& b) { T temp(a); a = b; b = temp; } }这...
分类:编程语言   时间:2015-12-29 12:25:30    阅读次数:200
把字符串转化成整型显示
使用方法./change 23456 10, 按最后指定的进制显示#include#include#includeint mystrlen(char *s){ int len=0; char *temp=s; while(*(temp)!='\0') { ++len; ++temp; } r...
分类:其他好文   时间:2015-12-27 10:44:51    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!