java - 我的 findCombos 方法不起作用,如何从 java 字符数组中删除字符

标签 java binary-search arrays character-arrays

我正在创建一种方法,该方法将返回一个 String[] ,其中包含相差一个字母的有效单词组合。该方法采用包含单词字典的 String 数组作为第一个参数,另外两个分别包含单词 one 和two 的字符串作为第二个和第三个参数。

这是我的方法:

public static String[] findCombos(String[] dict, String a, String b){
    char[] wordA = a.toCharArray();
    char[] wordB = b.toCharArray();
    int length = wordA.length;
    List<String> validCombos = new ArrayList<String>();
    Arrays.sort(dict);
    //wordA     
    for(int i = 0; i<length; i++){
        char tmp = wordA[i];
        wordA[i] = 0;
        String tmpWordA = new String(wordA).trim();
        //tmpWordA = tmpWordA + wordA.toString().trim();
        if(Arrays.binarySearch(dict, tmpWordA) >= 0){
            int lengthb = wordB.length;
            String tmpWordB = new String(wordB).trim();
            //tmpWordB = tmpWordB + wordB.toString();
            for(int j = 0; j<lengthb; j++){
                tmpWordB = new StringBuffer(tmpWordB).insert(j ,tmp).toString();
                if(Arrays.binarySearch(dict, tmpWordB) >= 0){
                    validCombos.add(tmpWordA + "\\t" + tmpWordB);//combo found
                }else{
                    wordA[i] = tmp;
                }
            }
        }else{
            wordA[i] = tmp;
        }
    }
    //wordB
    int lengthb = b.length();
    for(int i = 0; i<lengthb; i++){
        char tmp = wordB[i];
        wordB[i] = 0;
        String tmpWordB = new String(wordB).trim();
        //tmpWordB = tmpWordB + wordB.toString().trim();
        if(Arrays.binarySearch(dict, tmpWordB) >= 0){
            int lengtha = a.length();
            String tmpWordA = new String(wordA).trim();
            //tmpWordA = tmpWordA + wordA.toString();
            for(int j = 0; j< lengtha; j++){
                tmpWordA = new StringBuffer(tmpWordA).insert(j, tmp).toString();
                if(Arrays.binarySearch(dict, tmpWordA) >= 0){
                    validCombos.add(tmpWordA + "\\t" + tmpWordB);//combo found
                }else{
                    wordB[i] = tmp;
                }
            }
        }else{
            wordB[i] = tmp;
        }
    }
    String[] res = validCombos.toArray(new String[0]);
    return res;
}

数组已排序,我确信有问题的元素在数组中,但是搜索不断返回负数并自动分支到 else 子句。有任何想法吗?这是字典的链接:

Dictionary - PasteBin

最佳答案

您没有删除索引 i 处的字符,而是将索引 i 处的字符替换为 0,这个错误的假设会破坏您的算法。

使用 StringBuilder 从字符数组中按索引删除字符

String mystring = "inflation != stealing";
char[] my_char_array = mystring.toCharArray();
StringBuilder sb = new StringBuilder();
sb.append(mystring);
sb.deleteCharAt(10);
my_char_array = sb.toString().toCharArray();
System.out.println(my_char_array);             //prints "inflation = stealing"

上面的代码从字符数组中删除感叹号。

使用您自己的 java 函数从字符数组中删除字符:

String msg = "johnny can't program, he can only be told what to type";

char[] mychararray = msg.toCharArray();
mychararray = remove_one_character_from_a_character_array_in_java(mychararray, 21);
System.out.println(mychararray);

public char[] remove_one_character_from_a_character_array_in_java(
                           char[] original, 
                           int location_to_remove)
{
    char[] result = new char[original.length-1];
    int last_insert = 0;
    for (int i = 0; i < original.length; i++){
        if (i == location_to_remove)
            i++;

        result[last_insert++] = original[i];
    }
    return result;
}

//The above method prints the message with the index removed.

来源: https://stackoverflow.com/a/11425139/445131

关于java - 我的 findCombos 方法不起作用,如何从 java 字符数组中删除字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14217413/

相关文章:

java - Java ArrayList中的contains()方法是否使用二分查找?

python - 为什么即使值不存在,python 的 bisect_left 也会返回有效索引?

python - 为什么我的二分搜索实现效率很低?

java - 使用数组时出现 java.util.nosuchelementException 错误?

javascript - 匹配数组和返回值

java - 具有加权柏林噪声的 map 生成器

java - 如何解决以下 stub 是不必要的 - Mockito - Android

java - Java 中的通用类(类型安全)相互依赖

java - 同步的java线程错误的输出顺序

javascript - 推送到数组不会通过 ng-repeat 指令更新 View 列表