博客
关于我
栈和队列算法
阅读量:774 次
发布时间:2019-03-24

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

PHP堆栈实现
1、实现一个MinStack
                            #pragma once                <?php                #define MAX_VALUE 100                typedef struct MinStack {                    int array[MAX_VALUE];                    int top;                } MinStack;                void Init(MinStack *pMs) {                    pMs->top = 0;                }                void Push(MinStack *pMs, int data) {                    int min = data;                    if (pMs->top != 0 && pMs->array[pMs->top - 1] < min) {                        min = pMs->array[pMs->top - 1];                    }                    pMs->array[pMs->top++] = data;                    pMs->array[pMs->top++] = min;                }                void Pop(MinStack *pMs) {                    pMs->top -= 2;                }                int Min(MinStack *pMs) {                    return pMs->array[pMs->top - 1];                }                int Top(MinStack *pMs) {                    return pMs->array[pMs->top - 2];                }                void test1() {                    MinStack ms;                    Init(&ms);                    $arr = array(3, 2, 5, 6, 8, 3, 1, 9);                    foreach ($arr as $i => $val) {                        Push(&ms, $val);                    }                    echo Min(&ms) . " ";                    Pop(&ms);                    echo Min(&ms) . " ";                    Pop(&ms);                    echo Min(&ms) . " ";                }                    
2、改进方法
方法1:使用一个栈实现交叉存放数据
方法2:使用两个栈实现更高效的操作
3、其他技术问题
使用两个栈实现队列
            <?php            class Solution {                private Stack stack1;                private Stack stack2;                public void push(int node) {                    stack1.push($node);                }                public int pop() {                    if (stack2.isEmpty()) {                        while (!stack1.isEmpty()) {                            stack2.push(stack1.pop());                        }                    }                    return stack2.pop();                }            }            </?php        
4、字符串数组运算示例
            $str = array("2", "4", "+", "9", "*");            $result = Solution::evalRPN($str);            var_dump($result);        

转载地址:http://udlkk.baihongyu.com/

你可能感兴趣的文章
Python + requests实现接口自动化测试!
查看>>
python + requests实现的接口自动化测试(超详细~)
查看>>
Python + selenium 如何截图?
查看>>
Python + Selenium 登录QQ邮箱
查看>>
Python + selenium如何做接口自动化测试?
查看>>
Python + selenium如何截图!
查看>>
Python + selenium自动化生成测试报告!
查看>>
Python - C 嵌入式分段错误
查看>>
Python - DM 一个用户 Discord 机器人
查看>>
python - Flask 基础 - 蓝图( Blueprint )(2)
查看>>
python - os.getenv 和 os.environ 看不到我的 bash shell 的环境变量
查看>>
Python - while循环
查看>>
Python - “if“中的逻辑评估顺序陈述
查看>>
Python - 从 Google Cloud Storage 下载整个目录
查看>>
Python - 使用 pandas 格式化 Excel 单元格
查看>>
python - 列表
查看>>
Python - 可用时从串行端口数据逐行读取到列表中
查看>>
Python - 在应用程序中显示 Web 浏览器/iframe
查看>>
Python - 如何使用管道执行shell命令,但没有‘shell = True‘?
查看>>
Python - 如何使这个不可腌制的对象可腌制?
查看>>