ch3_2.txt
上传用户:lgb298
上传日期:2013-03-22
资源大小:1025k
文件大小:0k
源码类别:

软件工程

开发平台:

C/C++

  1. int pop(int s[],int top,int *q)
  2. {   if(top==0)
  3.     {   printf("stack empty");
  4.         return(0);
  5.     }
  6.     *q=s[--top];
  7.     return(top);
  8. }