web-dev-qa-db-ja.com

Javaの2つの文字列の共通部分

2つの文字列の共通部分、つまり文字列に共通の文字を見つけるには、Java関数が必要です。

例:

String s1 = new String("Sychelless");
String s2 = new String("Sydney");
15
Deepak

_HashSet<Character>_の使用:

_HashSet<Character> h1 = new HashSet<Character>(), h2 = new HashSet<Character>();
for(int i = 0; i < s1.length(); i++)                                            
{
  h1.add(s1.charAt(i));
}
for(int i = 0; i < s2.length(); i++)
{
  h2.add(s2.charAt(i));
}
h1.retainAll(h2);
Character[] res = h1.toArray(new Character[0]);
_

これはO(m + n)であり、漸近的に最適です。

23

文字を抽出する

String.toCharArray

それらをセットに入れます交差点を見つけます

Set.retainAll
8
saugata

最も基本的なアプローチ:

String wordA = "Sychelless";  
String wordB = "Sydney";  
String common = "";  

for(int i=0;i<wordA.length();i++){  
    for(int j=0;j<wordB.length();j++){  
        if(wordA.charAt(i)==wordB.charAt(j)){  
            common += wordA.charAt(i)+" ";  
            break;
        }  
    }  
}  
System.out.println("common is: "+common);  
5
Jigar Joshi

Saugataの応答の詳細(これを書いているときに表示されました):-

public static void main(String[] args) {
    String s1 = "Seychelles";
    String s2 = "Sydney";
    Set<Character> ss1 = toSet(s1);
    ss1.retainAll(toSet(s2));
    System.out.println(ss1);
}

public static Set<Character> toSet(String s) {
    Set<Character> ss = new HashSet<Character>(s.length());
    for (char c : s.toCharArray())
        ss.add(Character.valueOf(c));
    return ss;
}
3
Jim Downing

あなたが探しているアルゴリズムは 最長共通部分列の問題 だと思います

2
Armen Tsirunyan

最適化されたソリューション

public static String twoStrings(String s1, String s2){

    HashSet<Character> stringOne =  new HashSet<Character>(), stringTwo = new HashSet<Character>();  
    int stringOneLength = s1.length();
    int stringTwoLength = s2.length();
    for(int i=0; i<stringOneLength || i<stringTwoLength; i++) {
        if(i < stringOneLength)
            stringOne.add(s1.charAt(i));
        if(i < stringTwoLength)
            stringTwo.add(s2.charAt(i));
    }
    stringOne.retainAll(stringTwo);

    return stringOne.toString();
}
1
Bishal Jaiswal

ここで同じ質問が見つかりました、これを参照してください

2つの文字列の共通部分を見つけるための効率的なアルゴリズムの実装

1
Vicky

Guavaを使用すると、このタスクははるかに簡単になります。

String s1 = new String("Sychelless");
String s2 = new String("Sydney");
Set<String> setA = Sets.newHashSet(Splitter.fixedLength(1).split(s1));
Set<String> setB = Sets.newHashSet(Splitter.fixedLength(1).split(s2));
Sets.intersection(setA, setB);
0
Sergii Shevchyk

TreeSet を使用しました。そして retainAll() in TreeSetで、一致する要素を取得します。

Oracle Doc:

retainAll(Collection<?> c)

指定されたコレクションに含まれているこのセットの要素のみを保持します(オプションの操作)。

String s1 = new String("Sychelless");
String s2 = new String("Sydney");

Set<Character> firstSet = new TreeSet<Character>();
for(int i = 0; i < s1.length(); i++) {
    firstSet.add(s1.charAt(i));
}

Set<Character> anotherSet = new TreeSet<Character>();
for(int i = 0; i < s2.length(); i++) {
    anotherSet.add(s2.charAt(i));
}

firstSet.retainAll(anotherSet);
System.out.println("Matched characters are " + firstSet.toString());//print common strings

//output > Matched characters are [S, e, y]
0
Blasanka