php 线性表,php实现顺序线性表_后端开发

php性能优化的方法介绍_后端开发

你的php脚本性能,很多时候依赖于你的php版本、你的web server环境和你的代码的复杂度。本文就来告诉大家如何优化你的php脚本,希望对大家有一定的帮助。

b5f112724b17e679673b004d7945e205.png

什么是线性顺序表?

线性顺序表是指按照顺序在内存进行存储,除起始和结尾以外都是一一连接的(一般都是用一维数组的形式表现)。php实现将表单内容提交到数据库_后端开发

php实现将表单内容提交到数据库的方法:1、首先创建一个简单的数据库和表;2、然后使用【CREATE TABLE】语句创建MySQL表,设置相关字段;3、建立表单注册的前端页面;4、最后实现将表单内容提交到数据库即可。

(免费学习视频教程分享:php视频教程)

实例代码如下所示:

/*

* GetElem: 返回线性表中第$index个数据元素

* ListLength: 返回线性表的长度

* LocateElem: 返回给定的数据元素在线性表中的位置

* PriorElem: 返回指定元素的前一个元素

* NextElem: 返回指定元素的后一个元素

* ListInsert: 在第index的位置插入元素elem

* ListDelete: 删除第index位置的元素elem

*/

class Sequence {

public $seqArr;

public $length;

public function __construct($arr) {

$this->seqArr = $arr;

$this->length = count($arr);

}

/*

* 返回线性表中第$index个数据元素

*/

public function GetElem($index) {

if (($this->length) == 0 || $index < 0 || ($index > $this->length)) {

return "Error";

}

return $this->seqArr[$index - 1];

}

/*

* 返回线性表的长度

*

*/

public function ListLength() {

return $this->length;

}

/*

* 返回给定的数据元素在线性表中的位置

*/

public function LocateElem($elem) {

for ($i = 0; $i < ($this->length); $i++) {

if (($this->seqArr[$i]) == $elem) {

return $i + 1;

}

}

}

/*

* PriorElem: 返回指定元素的前一个元素

*/

public function PriorElem($elem) {

for ($i = 0; $i < ($this->length); $i++) {

if (($this->seqArr[$i]) == $elem) {

if ($i == 0) {

return "Error (is null) ";

} else {

return $this->seqArr[$i - 1];

}

}

}

}

/*

* NextElem: 返回指定元素的后一个元素

*/

public function NextElem($elem) {

for ($i = 0; $i < ($this->length); $i++) {

if (($this->seqArr[$i]) == $elem) {

return $this->seqArr[$i + 1];

}

}

}

/*

* ListInsert: 在第index的位置插入元素elem

*/

public function ListInsert($index, $elem) {

if (($this->length) == 0 || $index < 0 || $index > ($this->length)) {

return "Error";

}

for ($i = $index; $i < ($this->length); $i++) {

$this->seqArr[$i + 1] = $this->seqArr[$i];

}

$this->seqArr[$index] = $elem;

$this->length = $this->length + 1;

return $this->seqArr;

}

/*

* ListDelete: 删除第index位置的元素

*/

public function ListDelete($index) {

if (($this->length) == 0 || $index < 0 || $index > ($this->length - 1)) {

return "Error";

}

unset($this->seqArr[$index]);

$this->length--;

return $this->seqArr;

}

}

?>

相关文章教程分享:php教程

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值