代码搜索:LinkStack
找到约 226 项符合「LinkStack」的源代码
代码结果 226
www.eeworm.com/read/181725/9240070
h postfix.h
//后缀表达式类Postfix的声明
class Postfix
{
private:
int a,b;
char Theta;
LinkStack OPND2;
public:
void PostExpress(string &exp);
int Operate(int a, char theta, int b);
};
//后缀表达式计算函
www.eeworm.com/read/195829/5107227
c 3.9.c
int Pop(LinkStack top,StackElementType *x)
{
/* 将栈top的栈顶元素弹出,放到x所指的存储空间中 */
LinkStackNode *temp;
temp=top->next;
if(temp==NULL) /*栈为空*/
return(FALSE);
top->next=temp->next;
*x=temp-
www.eeworm.com/read/303129/3815417
c 3.9.c
int Pop(LinkStack top,StackElementType *x)
{
/* 将栈top的栈顶元素弹出,放到x所指的存储空间中 */
LinkStackNode *temp;
temp=top->next;
if(temp==NULL) /*栈为空*/
return(FALSE);
top->next=temp->next;
*x=temp-
www.eeworm.com/read/195829/5107214
c 3.11.c
int Pop(LinkStack top[M],int i,StackElementType *x)
{
/* 将栈top的栈顶元素弹出,放到x所指的存储空间中 */
LinkStackNode *temp;
temp=top[i]->next;
if(temp==NULL) /*第i号栈为空栈*/
return(FALSE);
top[i]->next=tem
www.eeworm.com/read/303129/3815404
c 3.11.c
int Pop(LinkStack top[M],int i,StackElementType *x)
{
/* 将栈top的栈顶元素弹出,放到x所指的存储空间中 */
LinkStackNode *temp;
temp=top[i]->next;
if(temp==NULL) /*第i号栈为空栈*/
return(FALSE);
top[i]->next=tem
www.eeworm.com/read/477923/6726198
txt 描述2.txt
5、顺序栈
SeqStack.h
Test.cpp
6、链式栈
StackNode.h
LinkStack.h
Test.cpp
7、顺序队列
SeqQueue.h
Test.cpp
8、链式队列
QueueNode.h
LinkQueue.h
Test.cpp
5、 顺序栈
SeqStack.h
template