查找字符串数组中最长的字符串

时间:2014-11-03 23:39:51

标签: java

这个问题是我试图这样做,但我检查字符串长度的方法不起作用;我该怎么办才能解决这个问题?

public static void main(String[] args) { 
    String[] animalNames = {"cat", "rabbit", "horse", "goat", "rooster", "ooooooooooooooo"};
    String a= getLongestString(animalNames);
    System.out.println(a);
}

public static String getLongestString(String []animalNames) {
  //  String animalNames[] =  {"cat","chicken","horse","ooooooooo" };

    int j = 0;
    for (j = 0; j <= animalNames.length; j++) {
        if (animalNames[j].length() > animalNames[j + 1].length()) {
                return (animalNames[j]);
            }
        }
        return null;
    }

}

6 个答案:

答案 0 :(得分:4)

下面。  1.您使用j<= animalNames.length;

  1. 您比较animalNames[j + 1]? - &GT;错误索引超出数组

  2. 然后您返回第一个条件return (animalNames[j]); - &gt;错误的价值

  3. 好的,让我说清楚。 您找到数组中最长的字符串。循环遍历数组,然后比较2个近元素,然后返回较大的元素。 使用您的代码,它将返回兔子。正确?

    您可能会对流程流程感到困惑。 有一种简单的方法。

    1. 为第一个数组元素的长度分配一个变量:elementLength = array [0] .length;以及跟踪索引的值
    2. 循环遍历数组 使用此变量检查每个元素,如果更大,则重新分配元素值并更新索引。
    3. 循环结束。你有最大的长度和指数
    4. 代码:

      int index = 0; 
      int elementLength = array[0].length();
      for(int i=1; i< array.length(); i++) {
          if(array[i].length() > elementLength) {
              index = i; elementLength = array[i].length();
          }
      }
      return array[index];
      

      就是这样。

答案 1 :(得分:2)

使用Java 8真的很简单(首先检查您的数组不为空或专门处理.get()):

List<String> strings = Arrays.asList(animals);    
int max = strings.stream().map(String::length).max(Integer::compareTo).get();

或者,如果您更喜欢单线,那就是:

int max = Arrays.asList(aminals)
    .stream().map(String::length).max(Integer::compareTo).get();

嗯,好吧..实际上是两班轮:-)好好享受!

答案 2 :(得分:-1)

public class LongestWord {
    public static void main(String []args)
    {
        System.out.println("Please enter the string for finding longest word");
        Scanner sc1 = new Scanner(System.in);
        String str = sc1.nextLine(), x=null;
        String str2[] = str.split(" ");

        x=str2[0];
        int i =0,j = 0;
        for( i = 0; i < str2.length; i = j)
        {
            for( j =i+1; j < str2.length; j++)
            {
                if(x.length() < str2[j].length())
                {
                    x = str2[j];
                    break;
                }
            }
        }
        System.out.println("the longest string is: " + x + " and it's length is: " + x.length());

    }
}

答案 3 :(得分:-1)

如果您可以使用现代的浏览器,则只需

Math.max(...["hey", "ho"].map(e => e.length))

答案 4 :(得分:-2)

我认为不应该有array.length();否则你会得到ArrayIndexOutOfBoundException,因为我们不能使用length()来表示字符串数组,而是可以使用特定的字符串长度。

答案 5 :(得分:-3)

public class Main {

    public static void main(String[] args) {
        String [] names = {"Greg", "Aleksandra", "Martha", "Oliwka"};

        String wynik = findLongestName(names);
        System.out.println( wynik);
    }

    public static String findLongestName(String [] names){
        int size = names.length;
        String longestName = names[0];

        for(int i = 0; i <= 3; i++){
            if(names[i].length() > longestName.length()){
            longestName = names[i];
        }}

        return longestName;
    }
}