题解 | #栈的压入、弹出序列#

栈的压入、弹出序列

http://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106

/**

  • 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
  • @param pushV int整型一维数组
  • @param pushVLen int pushV数组长度
  • @param popV int整型一维数组
  • @param popVLen int popV数组长度
  • @return bool布尔型
  • C语言声明定义全局变量请加上static,防止重复定义
  • C语言声明定义全局变量请加上static,防止重复定义 */
#include<stdbool.h>
bool IsPopOrder(int* pushV, int pushVLen, int* popV, int popVLen ) {
    // write code here
    int i=0;
    int push_count=-1;
    int pop_count=0;
    int val;
    int *stack = (int*)malloc(pushVLen*1001*sizeof(int));
    for(i=0;i<pushVLen;i++)
    {
        push_count++;
        *(stack + push_count) = *(pushV+i);
  //判断当前栈顶 和popV 这个是不是相等&&以防一直在这个while循环里,导致pop_count大于popVLen&&push_count<0
        while(*(stack + push_count)==*(popV+pop_count)&&pop_count<popVLen&&push_count>=0)
        {
             val = *(stack + push_count);
             printf("%d",val);
            push_count--;
            pop_count++;           
        }       
    }
    if(pop_count ==popVLen )
       return true;
    else 
        return false;
    return false;
}
全部评论

相关推荐

今天 09:08
裁应届生,一分钱补偿没有,离职了还脑控你,跟踪你,定位你,丁东服务是搞系每一个人
牛客吹哨人:建议细说...哨哥晚点统一更新到黑名单:不要重蹈覆辙!25届毁意向毁约裁员黑名单https://www.nowcoder.com/discuss/1317104
叮咚买菜稳定性 8人发布 投递叮咚买菜等公司10个岗位 >
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务