php通过循环链解决约瑟夫环

本想着用php写些数据结构提升一下,写到链的时候看到约瑟夫环问题,尝试用循环链写了一下

约瑟夫环:

约瑟夫环(约瑟夫问题)是一个数学的应用问题:已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围。从编号为k的人开始报数,数到m的那个人出列;他的下一个人又从1开始报数,数到m的那个人又出列;依此规律重复下去,直到圆桌周围的人全部出列

代码:

<?php
header("Content-type: text/html; charset=utf-8");
/**
* 约瑟夫环
*/

/**
* 结点
*/
class Node {
  /*结点id*/
  public $id;
  /*结点数据域*/
  public $data;
  /*下一个结点的指针域*/
  public $_next;

  function __construct($data) {
    $this->id = null;
    $this->data = $data;
    $this->_next = null;
  }
}

/**
* 循环链
*/
class CircularLinkedList {
  /*链表头指针*/
  private $_header;

  /*链表尾指针*/
  private $_end;

  /*存储链表数据的数组*/
  private $data = array();

  function __construct($node) {
    $this->_header = 0;
    $this->_end = 0;
    $node->id = $this->_end;
    $node->_next = $this->_header;
    $this->data[$this->_end] = $node;
  }

  /*增加结点*/
  public function add_list($node) {
    $current = $this->data[$this->_header];
    while($current->_next !== $this->_header) {
      $current = $this->data[$current->_next];
    }

    $this->_end++;
    $node->id = $this->_end;
    $node->_next = $this->_header;
    $this->data[$current->id]->_next = $node->id;
    $this->data[$this->_end] = $node;
  }

  /*插入结点*/
  public function insert_list($where,$node) {
    if($where == 1){
      $current = $this->data[$this->_header];
      while($current->_next !== $this->_header) {
        $current = $this->data[$current->_next];
      }

      $this->_end++;
      $node->id = $this->_end;
      $node->_next = $this->data[$this->_header]->id;
      $this->data[$current->id]->_next = $node->id;
      $this->data[$this->_end] = $node;
      $this->_header = $node->id;
    }
    else{
      $current = $this->data[$this->_header];
      for($i=1;$i<$where-1;$i++) {
        $current = $this->data[$current->_next];
      }

      $this->_end++;
      $node->id = $this->_end;
      $node->_next = $this->data[$current->_next]->id;
      $this->data[$current->id]->_next = $node->id;
      $this->data[$this->_end] = $node;
    }
  }

/*删除指定结点*/
public function del_list($where) {
  $current = $this->data[$this->_header];
  for($i=1;$i<$where-1;$i++) {
    $current = $this->data[$current->_next];
  }

  $next = $this->data[$current->id]->_next;

  if($where == 1) {
    $current_2 = $this->data[$this->_header];
    while($current_2->_next !== $this->_header) {
      $current_2 = $this->data[$current_2->_next];
    }

    $this->_header = $next;
    $this->data[$current_2->id]->_next = $next;
    unset($this->data[$current->id]);
  }
  else{
    $this->data[$current->id]->_next = $this->data[$next]->_next;
    unset($this->data[$next]);
  }
}

  /*循环链的长度*/
  public function get_length() {
    $current = $this->data[$this->_header];
    $length = 1;
    while($current->_next !== $this->_header) {
      $length ++;
      $current = $this->data[$current->_next];
    }

    return $length;
  }

  /*改变头指针*/
  public function change_header($where) {
    $current = $this->search_node($where);

    $this->_header = $current->id;
  }

  /*查找第n个结点*/
  public function search_node($where) {
    $current = $this->data[$this->_header];
    for($i=1;$i<$where;$i++) {
      $current = $this->data[$current->_next];
    }

    return $current;
  }

  public function set_header($header) {
    $this->_header = $header;
  }

  /*输出循环链*/
  public function get_list() {
    $current = $this->data[$this->_header];
    while($current->_next !== $this->_header) {
      echo "[".$current->id."]".$current->data."--->";
      $current = $this->data[$current->_next];
    }
    echo "[".$current->id."]".$current->data."--->[".$this->data[$current->_next]->id."]".$this->data[$current->_next]->data;
    echo "<br>-----------------------------------------------<br>";
  }
}

/*约瑟夫环对象*/
class JosephCycle {

  /*循环链*/
  private $linkedlist;

  /*开始的位置*/
  private $_begin;

  /*开始到被踢出者的距离*/
  private $_distance;

  /**
  * 构造函数
  * @param object $linkedlist 循环链
  * @param int $begin 从第几个开始
  * @param int $distance 从开始到被踢者的距离
  */
  function __construct($linkedlist,$begin,$distance) {
    $this->linkedlist = $linkedlist;
    $this->_begin = $begin;
    $this->_distance = $distance;
  }

  public function index() {
    $length = $this->linkedlist->get_length();
    $this->linkedlist->change_header($this->_begin);
    for($i=1;$i<$length;$i++) {
      $node = $this->linkedlist->search_node($this->_distance);
      $this->linkedlist->del_list($this->_distance);
      $this->linkedlist->set_header($node->_next);
      $this->linkedlist->get_list();
    }
  }
}

$list = new CircularLinkedList(new Node("测试1"));
$list->add_list(new Node("测试2"));
$list->add_list(new Node("测试3"));
$list->add_list(new Node("测试4"));
$list->add_list(new Node("测试5"));
$list->add_list(new Node("测试6"));
$list->add_list(new Node("测试7"));
$list->add_list(new Node("测试8"));
$list->add_list(new Node("测试9"));
$list->add_list(new Node("测试10"));
$list->add_list(new Node("测试11"));
$list->add_list(new Node("测试12"));
$list->add_list(new Node("测试13"));
$list->get_list();

$solution = new JosephCycle($list,6,8);
$solution->index();
?>

如有错误,敬请指正,虚心接受

时间: 2024-10-12 20:36:42

php通过循环链解决约瑟夫环的相关文章

php解决约瑟夫环

今天偶遇一道算法题 "约瑟夫环"是一个数学的应用问题:一群猴子排成一圈,按1,2,-,n依次编号.然后从第1只开始数,数到第m只,把它踢出圈,从它后面再开始数, 再数到第m只,在把它踢出去-,如此不停的进行下去, 直到最后只剩下一只猴子为止,那只猴子就叫做大王.要求编程模拟此过程,输入m.n, 输出最后那个大王的编号. 方法一:递归算法 1 function killMonkey($monkeys , $m , $current = 0){ 2 $number = count($mon

URAL 1521 War Games 2 树状数组解决约瑟夫环,输出离队顺序

1521. War Games 2 Time limit: 1.0 second Memory limit: 64 MB Background During the latest war games (this story is fully described in the problem "War games") the Minister of Defense of the Soviet Federation comrade Ivanov had a good chance to m

约瑟夫问题、约瑟夫环

约瑟夫问题(有时也称为约瑟夫斯置换,是一个出现在计算机科学和数学中的问题.在计算机编程的算法中,类似问题又称为约瑟夫环.又称"丢手绢问题".) 1问题来历编辑 据说著名犹太历史学家 Josephus有过以下的故事:在罗马人占领乔塔帕特后,39 个犹太人与Josephus及他的朋友躲到一个洞中,39个犹太人决定宁愿死也不要被敌人抓到,于是决定了一个自杀方式,41个人排成一个圆圈,由第1个人开始报数,每报数到第3人该人就必须自杀,然后再由下一个重新报数,直到所有人都自杀身亡为止.然而Jos

猴王问题约瑟夫环

[Joseph问题描述]n个人(编号0~(n-1)),从0开始报数,报到(m-1)的退出,剩下的人继续从0开始报数.求胜利者的编号. [求解思路]我们知道第一个人(编号一定是m%n-1) 出列之后,剩下的n-1个人组成了一个新的约瑟夫环(以编号为k=m%n的人开始): k k+1 k+2 ... n-2, n-1, 0, 1, 2, ... k-2 并且从k开始报0. 现在我们把他们的编号做一下转换: k --> 0 k+1 --> 1 k+2 --> 2 ... ... k-2 --&

一个小笔记(3):约瑟夫环

什么是约瑟夫环?其实百度有说http://baike.baidu.com/view/717633.htm 以一个传说中的问题为例子,提供源代码主要是能够通过这个问题,了解如何来操作循环链表 在罗马人占领乔塔帕特后,39 个犹太人与Josephus及他的朋友躲到一个洞中,39个犹太人决定宁愿死也不要被敌人抓到,于是决定了一个自杀方式,41个人排成一个圆圈,由第1个人开始报数,每报数到第3人该人就必须自杀,然后再由下一个重新报数,直到所有人都自杀身亡为止.然而Josephus 和他的朋友并不想遵从.

uva live 3882 And Then There Was One 约瑟夫环

// uva live 3882 And Then There Was One // // 经典约瑟夫环问题.n是规模,k是每次数的人数,m是第一个出列的人. // // 但是暴力用链表做肯定是不行的,因为 1 <= n <= 10000 , 1<= k <= 10000 // 1 <= m <= n; 虽然我知道公式是什么,但是我并不会推导,看了几乎一个下午的 // 数学推导过程,又弄了几个样例亲自动手实验一下,这样才算是有了一点明悟. // 下面来分享一下自己能力范

C++ 约瑟夫环

约瑟夫环: 已知n个人(以编号1,2,3...n分别表示)围坐在一张圆桌周围.从编号为k的人开始报数,数到m的那个人出列:他的下一个人又从1开始报数,数到m的那个人又出列:依此规律重复下去,直到圆桌周围的人全部出列. 例如:n = 9, k = 1, m = 5 [解答]出局人的顺序为5, 1, 7, 4, 3, 6, 9, 2, 8. 1 int main()//约瑟夫环 2 { 3 int n=9, m=5,k=2;//n是人数(编号1,2,……,x),m是出列号,k是起始人编号 4 int

【数据结构算法】约瑟夫环

1 约瑟夫环: 2 3 指针 4 5 void Joseph(Node*head,int n,int m) 6 { int i,int j; 7 Node*p,*q; 8 q=head;p=q->next; 9 for(j=1) 10 { 11 for(i=1;i<n;i++){ 12 q=p;p=p->next; 13 } 14 printf("%d",p->number); 15 q->next=p->next; 16 p=q->next;

poj 1781 In Danger(约瑟夫环,找规律)

http://poj.org/problem?id=1781 约瑟夫环的模板,每次数到2的人出圈. 但直接求会TLE,n太大. 打表发现答案和n有关系.当n是2的幂的时候,答案都是1,不是2的幂的时候都与小于2的幂那个数相差差值的2的倍数. #include <stdio.h> #include <iostream> #include <map> #include <set> #include <list> #include <stack&