会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
code -ss
新随笔
联系
管理
上一页
1
···
8
9
10
11
12
13
14
下一页
2015年12月24日
无线路由器改成交换机
摘要: 不使用wan口,并且进入路由器后台把DHCP关掉,重启路由器。使用剩下的lan口即可。
阅读全文
posted @ 2015-12-24 19:08 一支小白
阅读(314)
评论(0)
推荐(0)
2015年12月17日
第二讲 经典的递归问题2
摘要: ?12345678910111213141516171819202122232425262728//n个元素的全排列#include"stdio.h"#defineN3voidfun(charch[],intk){//k:当前的交换位置(关注点),与其后的元素交换inti;chart;if(k==N...
阅读全文
posted @ 2015-12-17 22:46 一支小白
阅读(186)
评论(0)
推荐(0)
二叉树的遍历方式-先序 中序 后序
摘要: 详情看百科。O(∩_∩)O哈哈~ 介绍的很清楚。先序遍历_百度百科中序遍历_百度百科后序遍历_百度百科
阅读全文
posted @ 2015-12-17 15:58 一支小白
阅读(166)
评论(0)
推荐(0)
2015年12月16日
数据结构综合训练1
摘要: 参加运动会有n个院系,编号为1……n。比赛分成m个男子项目,和w个女子项目。项目编号为男子1~m,女子m+1~m+w。不同的项目取前五名或前三名积分;取前五名的积分分别为:7、5、3、2、1,前三名的积分分别为:5、3、2;哪些项目取前五名或前三名由学生自己设定。(m#include #includ...
阅读全文
posted @ 2015-12-16 22:55 一支小白
阅读(387)
评论(0)
推荐(0)
数据结构上机5二叉树遍历
摘要: 写的不标准,凑活着。( ̄o ̄) . z Zbitree.h#define OK 1#define ERROR 0#define OVERFLOW -2#define STACK_INIT_SIZE 100#define STACKINCREMENT 10typedef ...
阅读全文
posted @ 2015-12-16 22:53 一支小白
阅读(297)
评论(0)
推荐(0)
数据结构-约瑟夫环
摘要: #include #include typedef struct node{ int key; int num; struct node * next;}node, * plist;//顺序创建int init(plist * L, int all_num){ plist p...
阅读全文
posted @ 2015-12-16 22:49 一支小白
阅读(759)
评论(0)
推荐(0)
数据结构上机4队列-杨辉三角2
摘要: #include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int Status, QElemType;//队列结构定义typedef struct { QElemType *base; int front; ...
阅读全文
posted @ 2015-12-16 22:48 一支小白
阅读(716)
评论(0)
推荐(0)
数据结构上机4队列-杨辉三角1
摘要: #include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int Status, QElemType;typedef struct { QElemType *base; int front; int rear...
阅读全文
posted @ 2015-12-16 22:47 一支小白
阅读(328)
评论(0)
推荐(0)
数据结构上机3栈-括号匹配
摘要: #include #include #define OK 1#define OVERFLOW -1#define ERROR 0#define STACK_INIT_SIZE 100#define STACKINCREMENT 10type...
阅读全文
posted @ 2015-12-16 22:46 一支小白
阅读(311)
评论(0)
推荐(0)
数据结构上机2单链表合并 非递减
摘要: #include #include #define OK 1#define OVERFLOW -1#define ERROR 0typedef int ElemType;typedef int Status;typedef struct LNode { Ele...
阅读全文
posted @ 2015-12-16 22:45 一支小白
阅读(245)
评论(0)
推荐(0)
上一页
1
···
8
9
10
11
12
13
14
下一页
公告