博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据结构实验二:栈和队列的基本操作和应用
阅读量:6642 次
发布时间:2019-06-25

本文共 2037 字,大约阅读时间需要 6 分钟。

栈——进制的转换
#include <iostream.h>
#include <malloc.h>
#include <stdlib.h>
typedef 
struct{
    
int * 
base
    
int *top;
    
int stacksize;
}Stack;
int InitStack(Stack &S)
{
    S.
base = (
int *) malloc(STACK_INIT_SIZE*
sizeof(
int));
    
if (!S.
base) exit(OVERFLOW);
    S.top = S.
base;
    S.stacksize = STACK_INIT_SIZE;
    
return 
1;
}
int Push(Stack &S, 
int e )
{
    
if (S.top-S.
base >= S.stacksize)
    {
        S.
base = (
int *) realloc(S.
base, (S.stacksize + T) *
sizeof(
int));
        
if (!S.
base) exit(OVERFLOW);
        S.top = S.
base + S.stacksize;
        S.stacksize += T;
    }
    *S.top++ = e;
    
return 
1;
}
int Pop(Stack &S, 
int &e)
{
    
if (S.top == S.
base
return 
0;
    e = *--S.top;
    
return 
1;
}
int StackEmpty(Stack S)
{
    
if (S.top == S.
base)
    
return 
1;
    
else 
return 
0;
}
void conversion(
int N, 
int r)
{
    Stack S;
    
int e; 
    InitStack(S);
    
while(N)
    {
        Push(S, N%r);
        N = N/r;
    }
}
while(!StackEmpty(S)){  
  Pop(S, e);
    cout << e;
}
void main()
{
    
int N, r;
    cin >> N;
    cin >> r;
    cout << N << 
"
由十进制转换为
" << r << 
"
进制后的值为:
";
    conversion(N, r);
    cout << endl;
}

 

 

 

 

 

 

括号匹配检验

#include<iostream.h>
#include<string.h>
typedef struct node{
    elemtype data;
    struct node *next;
}stack;
stack *top;
void push(elemtype n){
    stack *p;
    p=new stack;
    p->data=n;
    p->next=top->next;
    top->next=p;
}
void pop(){
    stack *q;
    q=top->next;
    top->next=top->next->next;
    delete q;
}
elemtype gettop(){
    return top->next->data;
}
void judge(char a[]){
    int i,tag=0,len=strlen(a);//tag==1 
    for(i=0;i<len;i++)
    if(a[i]=='('||a[i]=='['||a[i]=='{
')
        {push(a[i]);continue;}
        if(top->next==NULL)
        {
            cout<<"No"<<endl;
            break;
            tag=1;
        }
        if(a[i]!=')'&&a[i]!=']'&&a[i]!='}')
        continue;
    if(a[i]-gettop()==1||a[i]-gettop()==2)
        pop();
        else
        {
            cout<<"No"<<endl;
            break;
            tag=1;
        }
    }
    if(tag==0&&i==len)
    {
        if(top->next==NULL)
        cout<<"Yes"<<endl;
        else
        cout<<"No"<<endl;
    }
    top->next=NULL;
}
int main()
{
    top=new stack;
    top->next=NULL;
    char a[100];
    int n;
    cin>>n; 
    while(n--){
        cin>>a;
        judge(a);
    }
    return 0;


博主ma6174对本博客文章(除转载的)享有版权,未经许可不得用于商业用途。转载请注明出处

对文章有啥看法或建议,可以评论或发电子邮件到ma6174@163.com


本文转自ma6174博客园博客,原文链接:http://www.cnblogs.com/ma6174/archive/2012/01/05/2313307.html
,如需转载请自行联系原作者
你可能感兴趣的文章
获得驱动器信息卷设备&&Ring3得到磁盘文件系统(NTFS WIN10)
查看>>
js 事件点击 显示 隐藏
查看>>
java基础:4.2 对象和类(二)、数据域封装、this
查看>>
1118 实验三 有限自动机的构造与识别
查看>>
Ubuntu16.04使用Tarball安装ntp
查看>>
构造器及this的用法
查看>>
CF Educational Codeforces Round 21
查看>>
入职三天,公司给了100块钱叫我走人
查看>>
获取并打印Spring容器中所有的Bean名称
查看>>
面向对象多态及其继承
查看>>
java中jvm的工作原理
查看>>
centos7下环境配置
查看>>
为什么刚买来250G的硬盘插到电脑里只有大约232G?
查看>>
Microsoft Operations Management Suite 启用NPM网络性能监视
查看>>
新作获京东网双重推荐,成IT媒体新焦点
查看>>
接口测试Fiddler实战
查看>>
网络安全系列之三十一 组策略中的用户权限分配
查看>>
【Python之旅】第四篇(一):Python装饰器
查看>>
Powershell-获取DHCP地址租用信息
查看>>
小白学习大数据测试之hadoop hdfs和MapReduce小实战
查看>>