免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1993 | 回复: 7
打印 上一主题 下一主题

讨论一个算法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-06-22 12:26 |只看该作者 |倒序浏览
有四个数1,2,3,4
有4个数字,怎么把其所有3位数的组合列出来?即数学公式C3/4一共有4种组合,除了用循环,可以用什么方法都列出来呢?
其结果为
1,2,3
1,2,4
1,3,4
2,3,4

[ 本帖最后由 wangliang222002 于 2009-6-22 13:55 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-06-22 13:15 |只看该作者
点错了

参考array_rand

论坛徽章:
0
3 [报告]
发表于 2009-06-22 14:06 |只看该作者
递归可以实现!

论坛徽章:
0
4 [报告]
发表于 2009-06-22 14:16 |只看该作者
原帖由 liexusong 于 2009-6-22 14:06 发表
递归可以实现!


具体怎么弄呢?我还是没弄出来

论坛徽章:
0
5 [报告]
发表于 2009-06-22 16:32 |只看该作者

传说中的递归... O(∩_∩)O~

原帖由 wangliang222002 于 2009-6-22 14:16 发表


具体怎么弄呢?我还是没弄出来

<pre>
<?php
Class Tool{

    var $buff = array();
    var $count = 0;

    function doListComb( $n, $m ,$buff, &$count )
    {
        if( $m == 0 )
        {// 递归退出

            foreach($this->buff as $key => $val)
            {
                print($val." ");
            }
            print("\n");
            return;
        }
        for( $i = 0; $i <= $n - $m; ++$i )
        {
            $this->buff[$this->count++] = $n-$i;
            $this->doListComb( $n-$i-1, $m-1, $this->buff, $this->count );
            $this->count--;
        }
    }

    function listCombination( $n, $m )
    {
        $this->doListComb($n, $m, $this->buff, $this->count);
    }

}

/**********
  4
C
  3
**********/

$tool = new Tool();
$tool->listCombination(4, 3);

?>


[ 本帖最后由 sunnyfun 于 2009-6-22 16:36 编辑 ]

论坛徽章:
0
6 [报告]
发表于 2009-06-23 13:39 |只看该作者
上学时候写的,好像我现在都看不太明白了。
<?php
class quanpailie
{
&nbsp;&nbsp;&nbsp;&nbsp;function type($list,$k,$m)
&nbsp;&nbsp;&nbsp;&nbsp;{ static  $count1=0;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if($k==$m)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for($i=0;$i<=$m;$i++)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo  $list[$i];
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this->$count1=$this->$count1+1;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo "\n";

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for($i=$k;$i<=$m;$i++)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this->swap($list[$k],$list[$i]);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this->type($list,$k+1,$m);

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$this->swap($list[$k],$list[$i]);

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}

&nbsp;&nbsp;&nbsp;&nbsp;}
&nbsp;&nbsp;&nbsp;&nbsp;public  function swap(&$a,&$b)
&nbsp;&nbsp;&nbsp;&nbsp;{
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$temp=$a;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$a=$b;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$b=$temp;

&nbsp;&nbsp;&nbsp;&nbsp;}

}
$aa=new quanpailie();
$var=array(1,4,6,5,6);
$aa->type($var,0,3);
//echo quanpailie->count1;


论坛徽章:
0
7 [报告]
发表于 2009-06-30 13:40 |只看该作者

  1. $data = array(1,2,3,4,5);

  2. function CMN($data,$m,$parent)
  3. {
  4.         if ($m==1)
  5.         {
  6.                 foreach ($data as $value)
  7.                 {
  8.                         print implode("\t",$parent) ."\t$value\n";
  9.                 }
  10.         }
  11.         else
  12.         {
  13.                 $k = count($data) - $m +1;
  14.                 for ($i=0;$i<$k;$i++)
  15.                 {
  16.                         $_parent = $parent;
  17.                         $_parent[] = array_shift($data);
  18.                         CMN($data,$m-1,$_parent);
  19.                 }
  20.         }
  21. }

  22. CMN($data,3,array());

复制代码

[ 本帖最后由 springwind426 于 2009-6-30 14:21 编辑 ]

论坛徽章:
0
8 [报告]
发表于 2009-07-14 15:21 |只看该作者
<?php
   for($i=0;$i<4;$i++){
       $data = array(1,2,3,4);
       unset($data[$i]);
       echo join(',',$data)."\r\n";
   }
?>

[ 本帖最后由 phpfan 于 2009-7-15 02:25 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP