摘要: 本文记录顺序栈的数据结构定义及基本操作的算法描述,并对算法进行简单应用。 采用C语言实现,其中应用了少数C++特性,比如引用等。 源程序 //LinkQueue.cpp #include <stdio.h> #include <stdlib.h> #define STACK_INIT_SIZE 10 阅读全文
posted @ 2023-03-13 09:39 crossoverpptx 阅读(43) 评论(0) 推荐(0) 编辑