数据结构——线性表
作者:
zzz1t1 | 来源:发表于
2020-01-10 11:12 被阅读0次<?php
class Linear {
public $elm = [ ];
function length() {
return count($this->elm);
}
function isEmpty() {
return empty($this->elm);
}
function insert($value, $index) {
if ($value === null) {
return 'value is null';
}
$start_len = $this->length();
for ($i = $start_len; $i>$index; $i++) {
$this->elm[$i] = $this->elm[$i-1];
}
$this->elm[$index] = $value;
}
}
$res = new Linear();
var_dump($res->insert(232, 1));
var_dump($res->elm);
本文标题:数据结构——线性表
本文链接:https://www.haomeiwen.com/subject/fgepactx.html
网友评论