A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

昨天看算法,关于递归呢!有这么个题目,从1,2.。。n中取r个数,r < n,不可重复,有多少种取法。例如,从1,2,3,4,5中取3个数,共有123;124;125;134;135;145;234;235;245;345.这十种取法。程序代码该怎么写?采用for循环的话,递归的思路就是自身引用的for循环,具体到代码怎么写?一直套用的话,不会成一个无限死循环吗?
求高手指点江山!

评分

参与人数 1黑马币 +1 收起 理由
杨佳名 + 1

查看全部评分

3 个回复

倒序浏览
package nyist;

import java.util.Arrays;

public class test {
       
        public static boolean flag[] = new boolean[10];
       
        public static void main(String[] args)  {
                Arrays.fill( flag , false );
                dfs( 0, 0 );
        }
        public static void dfs( int id, int index )
        {
                if( id == 3 ) {                       
                        for( int i = 0; i < 5; i++ )
                                if( flag[i] ) System.out.print( i+1 );
                        System.out.println();
                        return ;
                }
                if( index >= 5 ) return ;
               
                for( int i = index ; i < 5; i++ ) {
                        if( flag[i] ) dfs( id, i+1 );
                        else {
                                if( !flag[i] ) {
                                        flag[i] = true;
                                        dfs( id+1, i+1 );
                                        flag[i] = false;
                                }
                        }
                }
        }
}
回复 使用道具 举报
  1. package com.itheima;

  2. /*
  3. * 需求:从1,2.。。n中取r个数,r < n,不可重复,有多少种取法。
  4. * 例如,从1,2,3,4,5中取3个数,共有123;124;125;134;135;145;234;235;245;345.这十种取法。
  5. */
  6. public class Test11 {
  7.         public static void main(String[] args) {
  8.                 method(5, 3);
  9.         }

  10.         // 共n个数,取出r个
  11.         public static void method(int n, int r) {
  12.                 // 定义数组
  13.                 int[] iarr = new int[n];
  14.                 for (int x = 0; x < n; x++) {
  15.                         iarr[x] = x + 1;
  16.                 }
  17.                 // 判断r的值,并输出符合条件的数字的组合
  18.                 if (r == 1) {
  19.                         method1(iarr, r);
  20.                 } else if (r == 2) {
  21.                         method2(iarr, r);
  22.                 } else {
  23.                         int count = 0;// 定义变量,当pos2往后推一个角标,pos3的初始值也应往后推一个角标
  24.                         // 定义3个指针
  25.                         for (int pos1 = 0; pos1 <= n - r; pos1++) {
  26.                                 for (int pos2 = pos1 + 1; pos2 <= n - r + 1; pos2++, count++) {
  27.                                         for (int pos3 = pos1 + r - 1 + count; pos3 < iarr.length; pos3++) {
  28.                                                 // 输出
  29.                                                 System.out.print(iarr[pos1]);
  30.                                                 for (int x = pos2; x < pos1 + r - 1 + count; x++) {
  31.                                                         System.out.print(iarr[x]);
  32.                                                 }
  33.                                                 System.out.println(iarr[pos3]);
  34.                                         }
  35.                                 }
  36.                                 count = 0;
  37.                         }
  38.                 }
  39.         }

  40.         // 当r==2的时候调用此方法。
  41.         private static void method2(int[] iarr, int r) {
  42.                 for (int pos1 = 0; pos1 < iarr.length - 1; pos1++) {
  43.                         for (int pos2 = pos1 + 1; pos2 < iarr.length; pos2++) {
  44.                                 System.out.print(iarr[pos1]);
  45.                                 System.out.println(iarr[pos2]);
  46.                         }
  47.                 }
  48.         }

  49.         // 当r==1的时候,调用此方法
  50.         private static void method1(int[] iarr, int r) {
  51.                 for (int x = 0; x < iarr.length; x++) {
  52.                         System.out.println(iarr[x]);
  53.                 }
  54.         }
  55. }
复制代码

想了好久,写的不知道是否有点复杂了,是定义了几个指针实现的。希望可以帮到楼主

评分

参与人数 1技术分 +1 收起 理由
杨佳名 + 1 赞一个!

查看全部评分

回复 使用道具 举报
public class Main {

        public static void main(String[] args) {               
               
                for( int i = 1; i <= 5; i++ )
                for( int j = i+1; j <= 5; j++ )
                for( int k = j+1; k <= 5; k++ )
                {
                        System.out.print( i+""+j+""+k+",");
                }
        }
}
其实这个题目就只需要这么点代码就可以搞定,开始写的那个递归看不明白就看这个吧,这个我相信没人看不明白
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马