代码详情
c_million
奋力学习,c,million。
展开
-
2016.09.29 use_q.c
#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>#include"queue.h"int main(){ Queue line; Item temp; char ch; InitializeQueue(&line); puts("Te原创 2016-09-29 17:26:51 · 292 阅读 · 0 评论 -
tree.h
/*二叉搜索树*//* 操作: *//* 操作前: *//* 操作后: */#ifndef _TREE_H#define _TREE_H#include<stdbool.h>typedef struct item{ char petname[20];/* 宠物名字*/ char petkind[20];/* 宠物种类*/}Item;#define MAXITEMS 1原创 2016-09-30 22:49:59 · 926 阅读 · 0 评论 -
2016.09.29 queue.c
#include<stdio.h>#include<stdlib.h>#include"queue.h"/*局部函数*/static void CopyToNode(Item item, Node *pn);static void CopyToItem(Node * pn, Item *pi);void InitializeQueue(Queue * pq){ pq->front原创 2016-09-29 17:25:27 · 198 阅读 · 0 评论 -
2016.09.29 queue.h
#ifndef _QUEUE_H#define _QUEUE_H#include<stdbool.h>/*在此处插入Item的类型定义*//*例如:*/typedef int Item;/*或:typedef struct item{...} Item*/#define MAXQUEUE 10typedef struct node{ Item item; struct原创 2016-09-29 17:28:39 · 203 阅读 · 0 评论 -
2016.09.29 mall.c
#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<time.h>#include"queue.h"#define MIN_PRE_HR 60.0/*有新顾客到来吗?*/bool newcustomer(double x); /*设置顾客参量*/Item customertime(lon原创 2016-09-29 20:25:34 · 209 阅读 · 0 评论 -
2016.09.28 list.h
无摘要原创 2016-09-28 21:47:46 · 218 阅读 · 0 评论 -
2016.09.28 film.c
#define _CRT_SECURE_NO_WARNINGS原创 2016-09-28 21:52:08 · 293 阅读 · 0 评论 -
2016.09.28 quicksort.c
#define _CRT_SECURE_NO_WARNNINGS原创 2016-09-28 22:00:27 · 218 阅读 · 0 评论 -
2016.09.28 list.c
#include<stdio.h>原创 2016-09-28 21:56:27 · 269 阅读 · 0 评论 -
2016.09.28 varargs.c
#define _CRT_SECURE_NO_WARNNINGS{ do原创 2016-09-28 22:07:48 · 249 阅读 · 0 评论 -
tree.c
/*二叉树实现*/#include"tree.h"#include<stdlib.h>#include<stdio.h>#include<string.h>static SeekItem( const Item * pi, Tree * ptree);static Node * MakeNode(const Item * pi);static bool ToLeft(const I原创 2016-09-30 22:51:20 · 611 阅读 · 0 评论