摘要: public static void ShellSort(int[] a, int Index) { int j, k; // 循环计数变量 int Temp; // 暂存变量 boolean Change; // 数据是否改变 int DataLength; // 分割集合的间隔长度 int Pointer; // 进行处理的位置 DataLength = (int) Index / 2; // 初始集合间隔长度 while (DataLength != 0) // 数列仍可进行分割 ... 阅读全文
posted @ 2013-08-29 15:54 待定... 阅读(187) 评论(0) 推荐(0) 编辑
摘要: void quickSort(int a[], int start, int end){ int i,j; i = start; j = end; if((a==null)||(a.length==0)) return; while(i1){ //递归调用,把key前面的完成排序 quickSort(a,0,i-1); } if(end-j>1){ quickSort(a,j+1,end); //... 阅读全文
posted @ 2013-08-29 11:05 待定... 阅读(131) 评论(0) 推荐(0) 编辑
摘要: void mergeSort(int data[],int temp[],int a,int b){if(a<b){int mid=(a+b)/2;mergeSort(data,temp,a,mid);mergeSort(data,temp,mid+1,b);merge(data,temp,a,mid,b);}}void merge(int data[],int temp[],int low,int mid,int high){int i=low,j=mid+1,k=low;while(i<=mid&&j<=high){if(data[i]<=data[ 阅读全文
posted @ 2013-08-29 10:32 待定... 阅读(396) 评论(0) 推荐(0) 编辑
摘要: import java.util.Stack;/** * 设计栈的数据结构,实现获得栈中最小元素min的函数,使得pop push getMin的时间 复杂度为o(1) * @author zhijian * */public class Code21 { class MyStack { private Stack dataStack; private Stack minStack; public MyStack() { dataStack = new Stack(); minStack = new S... 阅读全文
posted @ 2013-08-27 20:15 待定... 阅读(157) 评论(0) 推荐(0) 编辑
摘要: oracle序列和触发器实现主键自增长 阅读全文
posted @ 2013-08-24 15:36 待定... 阅读(298) 评论(0) 推荐(0) 编辑
摘要: #include#includetypedef struct Node{ int elem; struct Node *next;}Node,*List;List createList(); //创建空链表void insertList(List list, int elem); //链表插入元素void deleteList(List list, int elem); //链表删除元素int lengthList(List list); //链表长度void reverse(List list); //链表反转void reverse2(List list); ... 阅读全文
posted @ 2013-08-18 16:41 待定... 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 注解代码:import java.util.List;import org.apache.ibatis.annotations.Select;import org.apache.ibatis.type.Alias;public interface UserMapper { @Select("SELECT * FROM user ") List selectAllUser(); }mybatis-config.xml中配置mapper java代码: BlogMapper mapper... 阅读全文
posted @ 2013-08-12 19:30 待定... 阅读(356) 评论(2) 推荐(0) 编辑
摘要: jdbc配置文件config.properties jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc\:mysql\://localhost\:3307/test?autoReconnect\=true&useUnicode\=true&characterEncoding\=utf8 jdbc.username=root jdbc.password=rootmybatis配置文件mybatis-config.xml ... 阅读全文
posted @ 2013-08-12 19:19 待定... 阅读(186) 评论(0) 推荐(0) 编辑