会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
北纬37°
博客园
首页
新随笔
联系
订阅
管理
2018年11月12日
线索二叉树的创建,中序线索化和中序遍历(严蔚敏版数据结构实现)
摘要: #include<stdio.h> #include<iostream> #include<cstdio> using namespace std; #define OK 1 #define ERROR 0 #define OVERFLOW -1 typedef int Status; typede
阅读全文
posted @ 2018-11-12 17:08 北纬37°
阅读(2767)
评论(0)
推荐(0)
2018年10月17日
约瑟夫环的c语言实现(代码已实现)
摘要: # include <stdio.h> #define MAXLEN 20 int front=MAXLEN-1;//队列初始化 int rear=MAXLEN-1; enqueue(int q[],int x) //入队 { rear=(rear+1)%MAXLEN; q[rear]=x; } i
阅读全文
posted @ 2018-10-17 21:56 北纬37°
阅读(6410)
评论(0)
推荐(0)
公告