
数据结构
四维空间中的未知点
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
排序问题(数据结构).
#include<stdio.h>#include<stdlib.h>#include<string.h>#define LISTINCREAMENT 5#define LISTINITSIZE 20#define ERROR 0#define OK 1#define N 5 typedef int ElemType;typedef struct{ ElemType *elem; int length; int listsize;}SeqLi.原创 2021-12-07 19:28:26 · 436 阅读 · 0 评论 -
链栈的调用。
#include<stdio.h>#include"LinkStack.cpp"int main(void) { int a,b,c,f,i,x; LinkStack L1; L1=*Initsack(); while(1) { printf("\t\t**********************************************************\t\t\n"); printf("\t\t* * 链栈的代码应用\t\t\t\t\t\t*\n"); .原创 2021-12-01 21:37:14 · 653 阅读 · 0 评论