栈的应用——缓冲区计算逆波兰式

栈缓冲法计算数学表达式

问题描述

输入一个字符串(不含括号,只有个位数),输出计算结果

代码

#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>

struct ListNode {
   
 int data;
 ListNode* Next;
 ListNode* Last;
};
struct List {
   
 ListNode* header;
 ListNode* trailer;
 int _size;
};

void CreateList(List* l)//build the list
{
   
 l->_size = 0;
 l->header = (ListNode*)malloc(sizeof(ListNode));
 l->trailer = (ListNode*)malloc(sizeof(ListNode));
 l->header->Next = l->trailer;
 l->header->Last = NULL;
 l->trailer->Last = l->header;
 l->trailer->Next = NULL;
}

void InsertList(List* l, int e)//空表,在尾节点前插入
{
   
 ListNode* np = (ListNode*)malloc(sizeof(ListNode));
 np->data = e;
 np->Next = l->trailer;
 np->Last = l->trailer->Last;
 l->trailer->Last->Next = np;
 l->trailer->Last = np;
 l->_size++;
}

void PushList(List* l, int e)//入栈
{
   
 ListNode* np 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值