码迷,mamicode.com
首页 >  
搜索关键字:temp    ( 7776个结果
insert sort 插入排序
#pragma once #include #include template void InsertSort(list& container) { std::list::iterator it_min = container.begin(); std::list::iterator it_temp...
分类:编程语言   时间:2015-07-06 21:25:12    阅读次数:168
使用expdp/impdp传输表空间
----源库prodSQL>selectnamefromv$tablespace; NAME ------------------------------ SYSTEM SYSAUX UNDOTBS1 USERS TEMP TEMP1 TEST TEST1 EXPTEST 9rowsselected. SQL>selectuserenv(‘LANGUAGE‘)FROMDUAL; USERENV(‘LANGUAGE‘) ----------------------------------..
分类:其他好文   时间:2015-07-06 20:07:37    阅读次数:161
android 删除SD卡或手机的缓存图像和文件夹
public static final String TEMP_PHOTO_FILE_NAME = "temp_photo.jpg"; private static String mSdRootPath = Environment.getExternalStorageDirector...
分类:移动开发   时间:2015-07-06 15:40:27    阅读次数:135
C# 冒泡排序
class Program { static void swap( ref int atemp, ref int btemp)//注意ref的使用 { int temp = atemp; atemp = btemp; ...
分类:编程语言   时间:2015-07-06 13:47:44    阅读次数:149
算法导论笔记(三)冒泡排序
冒泡排序重复走访要排序的数列,比较相邻两个元素,如果顺序错误就交换,直到该数列无需再交换为止。升序冒泡void BubbleSorting(int arr[], int len){ if (len arr[j + 1]) { temp = ...
分类:编程语言   时间:2015-07-06 06:36:50    阅读次数:127
JS DOM编程艺术的学习—— JS学习笔记2015-7-5(第76天)
由于看高程3卡住了,所以现在在学习JS DOM编程艺术来巩固基础;一、在看JS DOM 编程艺术的时候,有个作者提到的方法很实用,就是在JS中变量和函数的命名方法: 变量的命名方法为使用下划线,比如: var temp_color = ['red','blue']; ...
分类:Web程序   时间:2015-07-05 23:45:30    阅读次数:171
Windows批处理:自动检查服务器连通性
该技术与上一篇《自动检查网络连通性》的实现原理相同,我将脚本稍微改动了下,用于检查公司服务器的连通性,简单快捷。在这里附上修改方法。@echooffcolor1Ftitle服务器连通检测echo.ifexist%temp%\*.pingdel%temp%\*.pingping-n2192.168.1...
分类:Windows程序   时间:2015-07-05 11:02:55    阅读次数:218
MeteoInfoLab脚本示例:FY-3A AOD HDF数据
FY3A卫星有HDF格式的AOD产品数据,全球范围,分辨率为0.05度。读取数据文件变量后要重新设定X/Y维,数据是Y轴反向的,且需要除以10000得到AOD值。脚本程序:#Add data filefn = 'D:/Temp/hdf/FY3A_MERSI_GBAL_L3_ASL_MLT_GLL_2...
分类:其他好文   时间:2015-07-04 20:57:04    阅读次数:588
使用指针方式进行数组排序 选择排序:
#include void select_sort(int *a,int n) { int i,j; for(i = 0;i<n-1;i++) { for(j = i+1;j *(a+j)) { int temp; temp = *(a+i); *(a+i) = *(a+j); *(a+j) = t...
分类:编程语言   时间:2015-07-04 19:49:54    阅读次数:200
冒泡排序-用指针方式实现
#include void bubble_sort(int *a,int n) { int i,j; for(i = 0;i<n;i++) { for(j = i;j *(a+j)) { int temp; temp = *(a+i); *(a+i) = *(a+j); *(a+j) = temp;...
分类:编程语言   时间:2015-07-04 19:47:43    阅读次数:185
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!