php 단일 체인 시트 구현 코드 공유

본 논문 의 사례 는 phop 단일 체인 표 의 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.

<?php
/**
 *    
 */ 
class Demo
{
  private $id;
  public $name;
  public $next;

  public function __construct ($id = '', $name = '')
  {
    $this->id = $id;
    $this->name = $name;
  }

  static public function show ($head)
  {
    $cur = $head;
    while ($cur->next) {
      echo $cur->next->id,'###',$cur->next->name,'<br />';
      $cur = $cur->next;
    }
    echo '<hr />';
  }

  //   
  static public function push ($head, $node)
  {
    $cur = $head;
    while (NULL != $cur->next) {
      $cur = $cur->next;
    }
    $cur->next = $node;
    return $head;
  }

  static public function insert($head, $node)
  {
    $cur = $head;
    while (NULL != $cur->next) {
      if ($cur->next->id > $node->id) {
        break;
      }
      $cur = $cur->next;
    }
    $node->next = $cur->next;
    $cur->next = $node;
    return $head;
  }

  static public function edit($head, $node)
  {
    $cur = $head;
    while (NULL != $cur->next) {
      if ($cur->next->id == $node->id) {
        break;
      }
      $cur = $cur->next;
    }
    $cur->next->name = $node->name;
    return $head;    
  }

  static public function pop ($head, $node)
  {
    $cur = $head;
    while (NULL != $cur->next) {
      if ($cur->next == $node) {
        break;
      }
      $cur = $cur->next;
    }
    $cur->next = $node->next;
    return $head;      
  }
}

$team = new Demo();
$node1 = new Demo(1, '   ');
Demo::push($team, $node1);
$node1->name = '  ';
Demo::show($team);

// Demo::show($team);
$node2 = new Demo(2, '   ');
Demo::insert($team, $node2);
// Demo::show($team);
$node3 = new Demo(5, '   ');
Demo::push($team, $node3);
// Demo::show($team);
$node4 = new Demo(3, '   ');
Demo::insert($team, $node4);
// Demo::show($team);
$node5 = new Demo(4, '   ');
Demo::insert($team, $node5);
// Demo::show($team);
$node4->name = '   ';//php     ,  Demo::edit    
// unset($node4);
// $node4 = new Demo(3, '   ');
// Demo::edit($team, $node4);
Demo::pop($team, $node1);

Demo::show($team);
이상 은 본 고의 모든 내용 입 니 다.여러분 이 phop 단일 체인 표를 실현 하 는 데 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기