数据结构
文章平均质量分 68
丐帮二帮主
让自己保持最新。
展开
-
打印数表,0初始,有序数字矩阵,九宫格内两相邻元素的不重复输出
// 打印数表.cpp : 定义控制台应用程序的入口点。// 0初始,有序数字矩阵,九宫格内两相邻元素的不重复输出// //#include "stdafx.h"#include using namespace std;int _tmain(int argc, _TCHAR* argv[]){ cout int width(0); cin>>width;原创 2016-10-08 21:19:03 · 513 阅读 · 0 评论 -
【数据结构1】(查询二叉树的实现)
理论解释:http://www.cnblogs.com/skywang12345/p/3576328.html很详细。不过函数实现略微复杂,不容易看懂。函数实现:http://www.cnblogs.com/elleniou/archive/2012/05/03/2480042.html简单清晰。不过注释比较少,要认真看一会。本人所用的测试代码是基于原创 2016-10-15 21:24:02 · 290 阅读 · 0 评论 -
单向链表
// 计算表达式.cpp : 定义控制台应用程序的入口点。// 单向链表// #include "stdafx.h"#include #include typedef struct _node{ int num; struct _node *next;} node;node* prtLLst(node *p);node* create();void fre原创 2016-10-31 21:54:41 · 243 阅读 · 0 评论 -
栈的实现
// & 数据结构之栈// & 2016.20.28// & #ifndef ALEX_STACK#include using namespace std;#endifstruct stack{ int num; char cha;// stack* pre; stack* next;};// * 栈的声明class myStack{public: st原创 2016-10-31 22:01:33 · 233 阅读 · 0 评论 -
表达式字符数字分割(还有改进)
// 计算表达式.cpp : 定义控制台应用程序的入口点。// 1*(12+(3-4)/5)#include "stdafx.h"#include #include #include using namespace std;int main(){ vector vnum; vector vchar; cout<<"please input expression:"<<e原创 2016-10-31 22:03:46 · 333 阅读 · 0 评论