php线性表的入栈与出栈实例分析_PHP

WBOY
Release: 2016-05-30 08:45:08
Original
931 people have browsed it

本文实例讲述了php线性表的入栈与出栈用法。分享给大家供大家参考。具体如下:

<&#63;php 
$stack = array("Simon", "Elaine"); //定义数组 
array_push($stack, "Helen", "Peter"); //入栈 
print_r($stack); 
&#63;>
Copy after login

<&#63;php 
$stack = array("Simon", "Elaine"); //定义数组 
array_unshift ($stack, "Helen", "Peter"); //入栈 
print_r($stack); 
&#63;>
Copy after login

<&#63;php 
$stack = array("Simon", "Elaine", "Helen", "Peter"); 
echo array_pop($stack)."/n"; //出栈 
print_r($stack); 
&#63;>
Copy after login

<&#63;php 
$stack = array("Simon", "Elaine", "Helen", "Peter"); 
echo array_shift($stack)."/n"; //出栈 
print_r($stack); 
&#63;>
Copy after login

希望本文所述对大家的php程序设计有所帮助。

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template