摘要: #include using namespa... 阅读全文
posted @ 2016-05-11 23:55 岳麓丹枫 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;const int N = 10;typedef int ELEMTYPE;typedef struct Node{ ELEMTYPE data; Node *next;}LNode,*LinkL... 阅读全文
posted @ 2016-05-11 23:54 岳麓丹枫 阅读(166) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;const int N = 10;typedef int ELEMTYPE;typedef struct Node{ ELEMTYPE data; struct Node * next;}LNode;typede... 阅读全文
posted @ 2016-05-11 23:29 岳麓丹枫 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #include using namespa... 阅读全文
posted @ 2016-05-11 23:29 岳麓丹枫 阅读(110) 评论(0) 推荐(0) 编辑
摘要: /* 功能:栈的链表实现 ... 阅读全文
posted @ 2016-05-11 20:41 岳麓丹枫 阅读(100) 评论(0) 推荐(0) 编辑
摘要: /* 功能:栈的链表实现 Author:lxm Date: 20160511*/#include #include #define ELEMTYPE int#define STACK_EMPTY -9999#define N 10typedef struc... 阅读全文
posted @ 2016-05-11 20:40 岳麓丹枫 阅读(149) 评论(0) 推荐(0) 编辑
摘要: “`#include #define MAXSIZE 10001#define ELEMTYPE int#define STACK_EMPTY -9999#define N 10typedef struct stack{ ELEMTYPE data[MAXSIZE]; ... 阅读全文
posted @ 2016-05-11 19:48 岳麓丹枫 阅读(137) 评论(0) 推荐(0) 编辑
摘要: “`#include #define MAX... 阅读全文
posted @ 2016-05-11 19:48 岳麓丹枫 阅读(100) 评论(0) 推荐(0) 编辑
摘要: # 显示文件大小`ls -lh`#显示目录大小du -sh```$ du -sh /usr/* 286M /usr/bin 124K /usr/games 20M /usr/include 1.6G /usr/lib 52M /usr/local 36M /usr/sbin 1.7G /usr/share 103M /usr/src```以... 阅读全文
posted @ 2016-05-11 18:58 岳麓丹枫 阅读(601) 评论(0) 推荐(0) 编辑
摘要: #list#break #delete #run#continue#finish#quit#next#step#print#watch l b 10; b add; b 10 if x>1#wi 以简单图形方式调试来自为知笔记(Wiz) 阅读全文
posted @ 2016-05-11 18:43 岳麓丹枫 阅读(100) 评论(0) 推荐(0) 编辑
摘要: ******来自为知笔记(Wiz) 阅读全文
posted @ 2016-05-11 18:43 岳麓丹枫 阅读(95) 评论(0) 推荐(0) 编辑
摘要: #include #define MAXSI... 阅读全文
posted @ 2016-05-11 18:20 岳麓丹枫 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #include #define MAXSIZE 101#define ELEMTYPE int#define QUEUE_EMPTY -10000typedef struct queue{ ELEMTYPE data[MAXSIZE]; int head; in... 阅读全文
posted @ 2016-05-11 18:19 岳麓丹枫 阅读(150) 评论(0) 推荐(0) 编辑
摘要: java版本/************************************************************************* > File Name: DirectInsertSort.java > Author: lxlm >... 阅读全文
posted @ 2016-04-27 20:42 岳麓丹枫 阅读(139) 评论(0) 推荐(0) 编辑
摘要: java版本/***************... 阅读全文
posted @ 2016-04-27 20:42 岳麓丹枫 阅读(72) 评论(0) 推荐(0) 编辑
摘要: Java版本/************************************************************************* > File Name: ChooseSort.java > Author: lxm > Create... 阅读全文
posted @ 2016-04-27 20:10 岳麓丹枫 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Java版本/***************... 阅读全文
posted @ 2016-04-27 20:10 岳麓丹枫 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1、PHP中的抽象类PHP 5 支持抽象类和... 阅读全文
posted @ 2016-04-27 19:44 岳麓丹枫 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1、PHP中的抽象类PHP 5 支持抽象类和抽象方法。定义为抽象的类不能被实例化。任何一个类,如果它里面至少有一个方法是被声明为抽象的,那么这个类就必须被声明为抽象的。被定义为抽象的方法只是声明了其调用方式(参数),不能定义其具体的功能实现。在类的声明中使用 abstract 修饰... 阅读全文
posted @ 2016-04-27 19:43 岳麓丹枫 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Java版本/***************... 阅读全文
posted @ 2016-04-27 19:36 岳麓丹枫 阅读(99) 评论(0) 推荐(0) 编辑