当前位置:首页 > PHP教程 > php类库 > 列表

php 两表合并成新表并且有序排列

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-17 17:35:08 浏览: 评论:0 
  1. <?php 
  2. /** 
  3. la (3,5,8,11) 
  4. lb(2,6,8,9,11,15) 
  5. 合并为lc,有序排列。 
  6. 用php实现,不能用sort之类的函数!!!! 
  7. **/ 
  8. class union { 
  9.     var $lista = array(); 
  10.     var $listb = array(); 
  11.     var $listc = array(); 
  12.      
  13.     function getlenght($arr) { //获得表长度 
  14.         return count($arr); 
  15.     } 
  16.      
  17.     function getelement($arr$n) { //获取表中第n个元素,返回 
  18.         return $e = $arr[$n] ? $arr[$n] : ''
  19.     } 
  20.      
  21.     function listinsert($arr$e) { //表末尾插入元素 
  22.         $arr[] = $e
  23.         return $arr
  24.     } 
  25.      
  26.    
  27. $phpig = new union(); 
  28. $lista = $phpig->lista = array(3, 5, 8, 11); 
  29. $listb = $phpig->listb = array(2, 6, 8, 9, 11, 15); 
  30. $listc = $phpig->listc; 
  31. $lena = $phpig->getlenght($lista); //取得表大小 
  32. $lenb = $phpig->getlenght($listb); 
  33. $i = $j = 0; 
  34. while($i < $lena && $j < $lenb) { 
  35.     $ea = $phpig->getelement($lista$i); 
  36.     $eb = $phpig->getelement($listb$j); 
  37.     if($ea <= $eb) { 
  38.         $listc = $phpig->listinsert($listc$ea); 
  39.         ++$i
  40.     } else { 
  41.         $listc = $phpig->listinsert($listc$eb); 
  42.         ++$j
  43.     } 
  44. while($i < $lena) { 
  45.     $ea = $phpig->getelement($lista$i); 
  46.     $listc = $phpig->listinsert($listc$ea); 
  47.     ++$i
  48. }//开源代码phpfensi.com 
  49. while($j < $lenb) { 
  50.     $eb = $phpig->getelement($listb$j); 
  51.     $listc = $phpig->listinsert($listc$eb); 
  52.     ++$j
  53. print_r($listc); 
  54. ?> 

Tags: php两表合并 php新表

分享到: