php 两表合并成新表并且有序排列
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-17 17:35:08 浏览: 评论:0
- <?php
- /**
- la (3,5,8,11)
- lb(2,6,8,9,11,15)
- 合并为lc,有序排列。
- 用php实现,不能用sort之类的函数!!!!
- **/
- class union {
- var $lista = array();
- var $listb = array();
- var $listc = array();
- function getlenght($arr) { //获得表长度
- return count($arr);
- }
- function getelement($arr, $n) { //获取表中第n个元素,返回
- return $e = $arr[$n] ? $arr[$n] : '';
- }
- function listinsert($arr, $e) { //表末尾插入元素
- $arr[] = $e;
- return $arr;
- }
- }
- $phpig = new union();
- $lista = $phpig->lista = array(3, 5, 8, 11);
- $listb = $phpig->listb = array(2, 6, 8, 9, 11, 15);
- $listc = $phpig->listc;
- $lena = $phpig->getlenght($lista); //取得表大小
- $lenb = $phpig->getlenght($listb);
- $i = $j = 0;
- while($i < $lena && $j < $lenb) {
- $ea = $phpig->getelement($lista, $i);
- $eb = $phpig->getelement($listb, $j);
- if($ea <= $eb) {
- $listc = $phpig->listinsert($listc, $ea);
- ++$i;
- } else {
- $listc = $phpig->listinsert($listc, $eb);
- ++$j;
- }
- }
- while($i < $lena) {
- $ea = $phpig->getelement($lista, $i);
- $listc = $phpig->listinsert($listc, $ea);
- ++$i;
- }//开源代码phpfensi.com
- while($j < $lenb) {
- $eb = $phpig->getelement($listb, $j);
- $listc = $phpig->listinsert($listc, $eb);
- ++$j;
- }
- print_r($listc);
- ?>
Tags: php两表合并 php新表
- 上一篇:php静态文件生成类
- 下一篇:PHPMailer邮件类
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)