码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
freemarker自定义标签报错(四)
freemarker自定义标签 1、错误描述 六月 05, 2014 11:31:35 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error 严重: Template processing error: "Error executing macro: write\nrequired parameter: nums is not s...
分类:其他好文   时间:2014-06-09 23:18:11    阅读次数:353
分割RGB中物体并计算数目
I=imread(im_path); axes(handles.axes1); imshow(I), % title('原始图像'); %计算每个像素点的真实长度 [x,y]=ginput(2); length=str2double(get(handles.edit5,'st...
分类:其他好文   时间:2014-06-08 18:11:31    阅读次数:263
LeetCode: Triangle [120]
【题目】 Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2], [3,4], [6,5,7], [4,1,8,3] ] The minimum path sum from top to...
分类:其他好文   时间:2014-06-08 17:52:45    阅读次数:235
堆排序
堆排序 // 测试堆排序 // @start:调整的起点 // @end:调整的终点,在堆排序的过程中,不断地减小调整区间,end参数起作用 void SiftDown(int arr[], int start, int end) { int i = start; int j = 2*i + 1; // j记录的是i结点的左孩子 int temp = arr[i]; ...
分类:其他好文   时间:2014-06-08 16:19:45    阅读次数:187
Maximum Depth of Binary Tree
题目 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. 方法 使用DFS对树进行遍...
分类:其他好文   时间:2014-06-08 10:26:33    阅读次数:207
ORACLE备份还原(expdp/impdp)
1. 创建目录 SQL> create directory dump_file as ‘/db/backup’; 2. 目录赋权限 SQL> grant read,write on directorydump_file to bam;   查看目录 SQL> select * from dba_directories; 3. 备份 SQL>expdp user/pwd directo...
分类:数据库   时间:2014-06-08 10:07:15    阅读次数:333
LeetCode:Minimum Path Sum
题目链接 Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its p...
分类:其他好文   时间:2014-06-07 21:59:08    阅读次数:344
排序算法--(二)
选择排序 直接选择排序: 选择排序,每一趟找到一个最小(大)值,每一趟遍历的数据减少一次。 template void SelectSort(T a[],int length){ T temp; for (int i=0;i0;i--) { shift(a,i,n); //n只是起条件判断作用,并不...
分类:其他好文   时间:2014-06-07 21:10:36    阅读次数:210
php实现冒泡排序
$array[$j+1]){ //升序排列 $temp = $array[$j]; $array[$j]=$array[$j+1]; $array[$j+1]=$temp; } ...
分类:Web程序   时间:2014-06-07 21:02:35    阅读次数:343
Linux重要的环境变量
PWD和OLDPWDPWD代表当前工作目录,改变目录后系统会自动更新该环境变量OLDPWD代表之前的工作目录实验:先进入/home目录,再cd到/etc目录,查看这两个变量 PATH这个环境变量大家应该比较熟悉,可执行文件的搜索路径,避免每次都要写全路径或者相对路径。默认多个可执行文件路径以冒号分隔...
分类:系统相关   时间:2014-06-07 21:01:53    阅读次数:563
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!