随笔分类 -  C语言

关于C语言的一些代码笔记
摘要:// test20161106.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "stdlib.h" #include "conio.h" typedef struct{ char name; int x; int y; }ElemType; type... 阅读全文
posted @ 2016-11-06 16:50 阿尔法钻石狗 阅读(580) 评论(0) 推荐(0)
摘要:#include "stdafx.h" #include #include #include "conio.h" #define ERROR 0 #define OK 1 #define MAXSIZE 10 typedef int ElemType; typedef struct{ ElemType elem [MAXSIZE]; int last; }SeqList... 阅读全文
posted @ 2016-10-23 17:33 阿尔法钻石狗 阅读(391) 评论(0) 推荐(0)