博客
关于我
栈和队列算法
阅读量: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/

你可能感兴趣的文章
PostgreSQL的安装与使用指南
查看>>
postgresql编译安装及配置
查看>>
Postgresql运维常用命令_登录_权限设置_创建用户_创建数据库_创建postgis数据库_远程连接---Postgresql工作笔记009
查看>>
PostgreSQL远程连接配置
查看>>
PostgreSQL远程连接,发生致命错误:没有用于主机“…”,用户“…”,数据库“…”,SSL关闭的pg_hba.conf记录
查看>>
PostgreSQL配置文件--AUTOVACUUM参数
查看>>
PostgreSQL配置文件--QUERY TUNING
查看>>
PostgreSQL配置文件--WAL
查看>>
PostgreSQL配置文件--其他
查看>>
PostgreSQL配置文件--复制
查看>>
PostgreSQL配置文件--实时统计
查看>>
PostgreSQL配置文件--日志和错误
查看>>
PostgreSQL配置文件--资源使用(除WAL外)
查看>>
PostgreSQL(一)教程 -----从头开始
查看>>
PostgresSQL查询数据中用逗号隔开的数据以及@>与<@的区别
查看>>
PostGresSQL简介与Windows上的安装教程
查看>>
Postgres用returning实现mysql的last_insert_id
查看>>
postgres访问认证配置文件pg_hba.conf
查看>>
Postgres间隔大量写IO的解决办法
查看>>
Posting JSON to Spring MVC Controller
查看>>