去哪兒2015筆試題:尋找字串的差異

來源:互聯網
上載者:User

標籤:字串處理   java   

去哪兒的一道筆試題。

給定兩個字串a,b;找出兩個字串中不一樣的字串。如存在於a而不存在於b,則將該字元輸出,同時、加一個“-”標記;若存在於b而不存在於a,則輸出該字元,同時以“+”標記。若是同時存在於a、b中,則不輸出。假設字串是由字母組成。

如:

a="abc",b="aabcbc",則輸出為"+a,+b,+c";

a="abcde",b="bcdef",則輸出為“-a,+f”;


思路:

我們可以使用上一篇講到的尋找兩個字串的公用子串的方法。即先找到兩個字串的最長公用子串,做相應的處理,然後找次長的公用子串,做相同的處理;直到兩個字串沒有公用子串。


java實現:

package com.liuhao.acm.exam;public class StringDiff {public String diff(String a, String b){String result = "";LongestComSub lcs = new LongestComSub();while(true){//擷取兩個字串的最長公用子串String maxSub = lcs.getLongestComSub(a, b);//若沒有公用子串,則跳出whileif(maxSub.length() == 0){break;}//將公用子串全部替換掉a = a.replaceAll(maxSub, "0");b = b.replaceAll(maxSub, "1");}//將a中剩下的輸出for(int i=0; i<a.length();i++){if(a.charAt(i) != '0'){result += ("-" + a.charAt(i) + ",");}}for(int i=0; i<b.length();i++){if(b.charAt(i) != '1'){result += ("+" + b.charAt(i) + ",");}}result = result.substring(0, result.length()-1);return result;}public static void main(String[] args) {String a = "abcbc";String b = "aabcaa";System.out.println(new StringDiff().diff(a, b));}}


去哪兒2015筆試題:尋找字串的差異

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.