直接插入排序#include typedef int Keytype;typedef struct{ Keytype key; int data;}RecType;void InsertSort(RecType R[],int n){ int i; int j; RecType temp; f...
分类:
其他好文 时间:
2014-06-21 09:52:18
阅读次数:
223
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi...
分类:
其他好文 时间:
2014-06-21 08:14:06
阅读次数:
176
下载jdk,确定jdk安装好以后,右击计算机(我的电脑)选择属性,然后在选择高级系统设置,在系统变量中path后添加;“+”jdk中bin所在目录;环境变量中在系统变量中点击新建,变量名为Java_Home ,变量值为jdk安装的所在路径 ;在系统变量中点击新建 变量名为Class_Path,变量值...
分类:
编程语言 时间:
2014-06-21 08:07:36
阅读次数:
252
1、安装ODAC 11.2 Release 5 and Oracle Developer Tools for Visual Studio (11.2.0.3.20)。注:支持VS2010和VS20122、安装完成之后在系统环境变量PATH里去掉安装之后添加的两项,应该分别为第一项和第二项,路径应该是...
分类:
数据库 时间:
2014-06-21 08:02:23
阅读次数:
260
显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false 或...
分类:
其他好文 时间:
2014-06-21 07:59:52
阅读次数:
160
Triangle: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, give...
分类:
其他好文 时间:
2014-06-21 07:02:07
阅读次数:
203
#include #define NUMBER 6#define F_PATH "D:\\C_C++\\ec13-3\\hw.dat"typedef struct { char name[20]; int height; float weight;} student;void swap(studen...
分类:
编程语言 时间:
2014-06-21 00:08:26
阅读次数:
321
1.首先下载并配置jdk 安装完后打开系统环境变量设置, a.系统变量→新建 JAVA_HOME 变量 。变量值填写jdk的安装目录 b.系统变量→寻找 Path 变量→编辑 在变量值最后输入 %JAVA_HOME%\bin;%JAVA_HOME%\jre\bin; (注意原来Path的变量值末尾有...
分类:
移动开发 时间:
2014-06-20 23:25:43
阅读次数:
243
具体代码如下: 1 /** 2 * ftp取天气网信息,参数为ftp地址、账号、密码 3 * @param ip 4 * @param port 5 * @param user 6 * @param pswd 7 * @param path...
分类:
其他好文 时间:
2014-06-20 20:27:22
阅读次数:
238
这是一个Oracle的列转行函数:LISTAGG()先看示例代码:with temp as( select 'China' nation ,'Guangzhou' city from dual union all select 'China' nation ,'Shanghai' city fr.....
分类:
数据库 时间:
2014-06-20 19:13:41
阅读次数:
224