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

软件工程

开发平台:

C/C++

  1. int  push(int s[],int x,int top)
  2. {
  3.     if(top==M)
  4.     {   printf("overflow");
  5.         return(-M);
  6.     }
  7.     s[top]=x;
  8.     return(++top);
  9. }