- 博客(7)
- 收藏
- 关注
原创 数据结构整理_有序顺序表合并
整理了一下顺序表的合并,挺简单的算法。用的VC++6.0整理代码!// 整理_有序顺序表合并.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #define INIT_LEN 30#define ELEM_LEN 60typedef int Elem
2015-05-20 23:24:52
1131
原创 数据结构整理_有序链表合并
线性表的应用类吧,是两个表的合并,前提是两个表都已经按序排好。通过VC++6.0整理!// 整理_有序线性表合并.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include typedef int ElementType;typedef stru
2015-05-19 11:44:01
593
原创 数据结构整理_线性表之链表
链表的课件整理,于VC++6.0中整理!// 整理_线性表之链表.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include typedef int ElementType;typedef struct Node{ ElementType d
2015-05-18 22:47:45
353
原创 数据结构整理_线性表之顺序表
学期过半,数据结构上课的笔记我就记录于此吧。代码是在VC++6.0中整理的!// 整理_线性表之顺序表.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #define INIT_LEN 3 //初始长度#define INCR_LEN 3 //增加长度
2015-05-18 21:54:15
443
原创 Linux命令 whoami 和 who am i 的区别
whoami显示的是有效用户ID,或者说当前用户IDwho am i 显示的是实际用户ID,或者说登入用户ID当你以frame7001登陆后使用了su命令切换到了root用户那么你用whoami显示的就是root用户而你用who am i显示的就是frame7001用户
2015-04-25 11:24:30
1106
原创 Linux通配符
1. *#. 匹配0个或多个字符2. ?#. 匹配任意一个字符3. [list]#. 匹配list中任意单一字符4. [c1-c2]#. 匹配c1到c2中的任意单一字符5. {string1,string2,...}#. 匹配string1或者string2或更多字符串6. {c1..c2}#
2015-04-25 10:54:32
342
原创 Linux中Ctrl-C和Ctrl-Z区别
Ctrl-C 和 Ctrl-Z 都为中断命令,但是作用却不一样Ctrl-C :强制中断程序Ctrl-Z :将任务放入后台,维持挂起状态,用户可以使用fg/bg命令继续操作。fg命令重新启动前台被终端的任务,bg命令把被中断的任务放在后台执行
2015-04-25 10:50:42
478
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人