08 2019 档案

摘要:" 强行推送远程仓库" 阅读全文
posted @ 2019-08-23 19:02 wjwdive 阅读(3063) 评论(0) 推荐(0) 编辑
摘要:算法 输出结果 阅读全文
posted @ 2019-08-14 23:55 wjwdive 阅读(231) 评论(0) 推荐(0) 编辑
摘要:```C #ifndef LINKSTACK_H_INCLUDED #define LINKSTACK_H_INCLUDED #include #include //链式栈的结点 typedef struct LINKNODE { struct LINKNODE *next; }LinkNode; //链式栈 typedef struct LINKSTACK { Lin... 阅读全文
posted @ 2019-08-09 07:49 wjwdive 阅读(978) 评论(0) 推荐(0) 编辑
摘要:```C /* * SeqStack.h * * Created on: 2019年8月1日 * Author: Administrator */ #ifndef SEQSTACK_H_ #define SEQSTACK_H_ //数组去模拟栈的顺序存储, 有数组的后面模拟栈顶 ,避免数据频繁移动 #define MAX_SIZE 1024 #define SEQ_S... 阅读全文
posted @ 2019-08-09 07:48 wjwdive 阅读(425) 评论(0) 推荐(0) 编辑
摘要:```C /* * Josephus.c * * Created on: 2019年7月25日 * Author: Administrator */ #include "CycleLinkList.h" #include #include #include #define M 8 #define N 3 typedef struct MYNUM { CircleLinkNode node; int 阅读全文
posted @ 2019-08-09 07:39 wjwdive 阅读(316) 评论(0) 推荐(0) 编辑
摘要:按照单链表的设计,稍加改动。和单向链表不一样的地方,头节点不指向NULL,而是指向自己head 循环链表的判满 1)判断next是不是头结点,2)判断size 阅读全文
posted @ 2019-08-09 07:37 wjwdive 阅读(3365) 评论(0) 推荐(0) 编辑