0

我有一个字符串数组列表,希望将所有可能的组合存储到另一个集合中。

例如:

[air,bus,car]
->
[air]
[bus]
[car]
[air,bus]
[air,car]
[bus,air]
[bus,car]
[car,air]
[car,bus]
[air,bus,car]
[air,car,bus]
...
[car,bus,air]

重复并不重要。我现在拥有的代码是:

public ArrayList<String> comb(ArrayList<String> wrds, ArrayList<String> str, int size)
{
    ArrayList<String> s = new ArrayList<String>();
    s.addAll(str);
    if(size != a1.size())
    {
        Iterator e = a1.iterator();
        while(e.hasNext())
        {
            s.add((String)e.next());
        }
        size++;
    }
}

我试图让它递归调用自己,以便它可以存储组合。我可以就我的代码中缺少的位置或部分获得任何帮助吗?

4

3 回答 3

5

鉴于这是作业,我将尝试为您提供答案的背景。

解决这个问题的关键是使用递归。

首先想象你的数组中有两个项目。你可以删除第一个项目给你你的第一个组合。将剩余的项目添加到第一个项目为您提供第二个组合。删除第二个项目会给你第三个组合。添加剩余项目为您提供第四种组合。如果你有["air", "bus"]它会是这样的:

["air"]
["air", "bus"]
["bus"]
["bus", "air"]

返回的方法可能如下所示:

String[][] combinations(String[] strings)

需要注意的重要事项是可以将包含单个字符串的数组传递给此方法,并且它可以返回包含包含单个字符串的数组的数组。

这个问题有点复杂,因为你必须记录字符串组合,所以在我们解决这个问题之前,了解递归很重要。

想象一下,您想编写一个乘法方法,它接受两个数字并将它们相乘,但您只能使用加法和减法。您可以编写一个递归函数,将其中一个数字添加到自身,直到另一个数字达到退出条件,例如:

public int multiply(int value1, int value2) 
{
  if (value1 > 1) 
  {
    int remaining = value1 - 1;
    return value2 + multiply(remaining, value2);
  }
  else 
  {
    return value2;
  }
}

您可以对数组执行相同的操作,只是1在数组包含一个项目时退出当值命中时退出,例如:

public String[][] combinations(String[] strings) 
{
  if (strings.length > 1) 
  {
    ...
  }
  else 
  {
    return new String[][]{strings};
  }
}

java.util.List由于 Java API 的原因,它比数组更容易使用,所以你想要这样的东西:

public List<List<String>> combinations(List<String> strings) 
{
  if (strings.size()> 1) 
  {
    ...
  }
  else 
  {
    List<List<String>> result = new ArrayList<List<String>>();
    result.add(strings);
    return result;
  }
}

现在这是...最重要的一点。您需要保留一个列表列表,该列表将成为结果并遍历strings. 对于每个字符串,您可以将该字符串添加到结果中,然后您需要创建一个减去当前字符串的子列表,您可以使用该子列表combinations再次迭代结果,添加当前字符串包含的每个列表。在代码中,它看起来像:

public List<List<String>> combinations(List<String> strings) 
{
  if (strings.size() > 1) 
  {
    List<List<String>> result = new ArrayList<List<String>>();

    for (String str : strings) 
    {
      List<String> subStrings = new ArrayList<String>(strings);
      subStrings.remove(str);

      result.add(new ArrayList<String>(Arrays.asList(str)));

      for (List<String> combinations : combinations(subStrings)) 
      {
        combinations.add(str);
        result.add(combinations);
      }
    }

    return result;
  }
  else 
  {
    List<List<String>> result = new ArrayList<List<String>>();
    result.add(new ArrayList<String>(strings));
    return result;
  }
}

总之,您所做的是将字符串列表减少为单个项目,然后将其与前面的项目组合以在线程返回调用堆栈时产生所有可能的组合。

于 2013-01-23T18:40:08.370 回答
4
public static void combination(Object[] array){
         for(int x = 0; x < (1 << array.length); x++){
             System.out.print("[");
             for(int y = 0; y < array.length; y++){
                 if(checkIsOn(x, y){
                    System.out.print(array[y]);
                 }
             }
             System.out.println("]");
         }
    }

    public static boolean checkIsOn(int mast, int position){
         return (mast & (1 << position) > 0);
    }
于 2016-03-15T23:32:04.687 回答
0

使用列表作为递归函数的参数。您可以使用包含除第一项之外的所有内容的新列表从其内部调用该函数。

于 2013-01-23T16:43:20.710 回答