摘要: #include using namespace std;const int N = 10;int data[]= {6,1,2,7,9,3,4,5,10,8};void quickSort(int* data, int low,int high);void printArray(... 阅读全文
posted @ 2016-05-12 20:26 岳麓丹枫 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #include using namespa... 阅读全文
posted @ 2016-05-12 20:26 岳麓丹枫 阅读(50) 评论(0) 推荐(0) 编辑
摘要: #include using namespa... 阅读全文
posted @ 2016-05-12 19:56 岳麓丹枫 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;const int N = 10;int data[] = {6,1,2,7,9,3,4,5,10,8};void binaryInsertSort(int* data,int n);void printArray(int*... 阅读全文
posted @ 2016-05-12 19:56 岳麓丹枫 阅读(132) 评论(0) 推荐(0) 编辑
摘要: ```#include using namespace std;const int N = 10;int data[] = {6,1,2,7,9,3,4,5,10,8};void binaryInsertSort(int* data,int n);void printArray(int* data, int n);int locate(int*data,int i);int main(){ ... 阅读全文
posted @ 2016-05-12 19:55 岳麓丹枫 阅读(111) 评论(0) 推荐(0) 编辑
摘要: #include using namespa... 阅读全文
posted @ 2016-05-12 19:41 岳麓丹枫 阅读(63) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;const int N = 10;int data[] ={6,1,2,7,9,3,4,5,10,8};void directInsertSort(int* data,int n);void printArray(int* ... 阅读全文
posted @ 2016-05-12 19:40 岳麓丹枫 阅读(71) 评论(0) 推荐(0) 编辑
摘要: ```#include using namespace std;const int N = 10;int data[] ={6,1,2,7,9,3,4,5,10,8};void directInsertSort(int* data,int n);void printArray(int* data, int n);int main(){ directInsertSort(data,N); ... 阅读全文
posted @ 2016-05-12 19:34 岳麓丹枫 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ```#include using namespace std;const int N = 10;int data[] = {6,1,2,7,9,3,4,5,10,8};void quickSort(int *data,int low,int high);int partition(int *data, int low , int high);void printArray(int *data,i... 阅读全文
posted @ 2016-05-12 19:07 岳麓丹枫 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;const int MAXSIZE = 1000;typedef int ELEMTYPE;const int N = 10;typedef struct { ELEMTYPE data[MAXSIZE]; in... 阅读全文
posted @ 2016-05-12 18:13 岳麓丹枫 阅读(245) 评论(0) 推荐(0) 编辑
摘要: #include using namespa... 阅读全文
posted @ 2016-05-12 18:13 岳麓丹枫 阅读(97) 评论(0) 推荐(0) 编辑
摘要: ```#include using namespace std;const int MAXSIZE = 1000;typedef int ELEMTYPE;const int N = 10;typedef struct { ELEMTYPE data[MAXSIZE]; int head; int tail;}Queue;Queue Q;void initQueue(Queue ... 阅读全文
posted @ 2016-05-12 18:11 岳麓丹枫 阅读(216) 评论(0) 推荐(0) 编辑
摘要: package com.lxm.demos;... 阅读全文
posted @ 2016-05-12 16:06 岳麓丹枫 阅读(63) 评论(0) 推荐(0) 编辑
摘要: package com.lxm.demos;import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.File;import java.io.FileInputStream;import j... 阅读全文
posted @ 2016-05-12 16:05 岳麓丹枫 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 引用:http://www.cnblogs.com/ybwang/archive/2010/06/04/1751279.html 参考:1.范式间的区别http://www.cnblogs.com/winlinglin/archive/2008/11/19/1336337.html2. 数据库范式1NF 2NF 3NF BCNFhttp://dev.firnow.com/course/7_data... 阅读全文
posted @ 2016-05-12 11:47 岳麓丹枫 阅读(1125) 评论(0) 推荐(0) 编辑
摘要: # 查看当前进程ID与当前进程的父进程ID`$$``echo $PPID`#shell脚本之forxunhuan``` for ((i=0;i<10;++i)) do echo "hello",$i done```**注意for与(之间有空格#set、env以及export的联系与区别*注意:每一个shell都是一个单独的进程** set定义的变量是每个shell进... 阅读全文
posted @ 2016-05-12 10:19 岳麓丹枫 阅读(127) 评论(0) 推荐(0) 编辑
摘要: Cmd Markdown https://www.zybuluo.com 简书http://www.jianshu.comm201572935@hust.edu.cnlxm123 farboxhttp://yueludanfeng.farbox.com/admin m201572935@hust.edu.cnlxm123来自为知笔记(Wiz) 阅读全文
posted @ 2016-05-12 10:19 岳麓丹枫 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 查看当前进程ID与当前进程的父进程ID$$ echo $PPIDshell脚本之for循环 for ((i=0;i<10;++i)) do echo "hello",$i done**注意for与(之间有空格set、env以及export的联系与区别... 阅读全文
posted @ 2016-05-12 10:12 岳麓丹枫 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 查看当前进程ID与当前进程的父进程ID$$ ... 阅读全文
posted @ 2016-05-12 10:12 岳麓丹枫 阅读(89) 评论(0) 推荐(0) 编辑