Interleaving String,interleavingstring

來源:互聯網
上載者:User

Interleaving String,interleavingstring

Given s1, s2, s3, find whethers3 is formed by the interleaving of s1 and s2.

For example,
Given:
s1 = "aabcc",
s2 = "dbbca",

When s3 = "aadbbcbcac", return true.
When s3 = "aadbbbaccc", return false.

最簡單思路就是遞迴去做,但是這樣需要遞迴最多s3長度的層次,消耗比較大,很容易出現逾時錯誤,進行遞迴嘗試果然出現逾時錯誤,但是遞迴是解決這個問題最直觀的方法。

遞迴方法不行考慮DP,我們用path[i][j] 記錄s1到i 和s2到j 和s3[i+j-1]是否滿足要求,這個過程就是填一張二維數組表的過程,先初始化第一行和第一列,然後填表計算出所有,返回path[s1.length][s2.length]的值。

已經AC的代碼:

public class Solution {    public boolean isInterleave(String s1, String s2, String s3) {if(s1.length()+s2.length()!=s3.length()){return false;}int row = s1.length();int col = s2.length();boolean [][]path = new boolean[row+1][col+1];path[0][0] = true;for(int i=1;i<=row;i++){path[i][0] = path[i-1][0] && (s1.charAt(i-1)==s3.charAt(i-1));}for(int i=1;i<=col;i++){path[0][i] = path[0][i-1] && (s2.charAt(i-1) == s3.charAt(i-1));}for(int i=1;i<=row;i++){for(int j=1;j<=col;j++){path[i][j] = (path[i-1][j] && s1.charAt(i-1)==s3.charAt(i+j-1)) ||(path[i][j-1] && s2.charAt(j-1) == s3.charAt(i+j-1));}}return path[row][col];}}


 




聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.