LeetCodeOJ_205_Submission Details

答題鏈接

題目:

Given two strings s and t, determine if they are isomorphic.

Two strings are isomorphic if the characters in s can be replaced to get t.

All occurrences of a character must be replaced with another character while preserving the order of characters. No two characters may map to the same character but a character may map to itself.

For example,
Given “egg”, “add”, return true.
Given “foo”, “bar”, return false.
Given “paper”, “title”, return true.

Note:
You may assume both s and t have the same length.

代碼:

/*
 *假設s的長度等於t的長度
 */
class Solution {
public:
    bool isIsomorphic(string s, string t) {
        int len_s = s.size();
        int len_t = t.size();
        map<char, char> map_char;

        for( int i=0; i<len_s;i++ )
         {

                 map<char, char>::iterator it_map;
                 it_map = map_char.find(s[i]);
                 if( it_map == map_char.end() )//不存在值爲s[i]的key鍵
                 {
                      for( it_map = map_char.begin(); it_map != map_char.end(); it_map++ )
                      if( it_map -> second == t[i])
                      break;
                      if( it_map != map_char.end() )
                      return false;
                      else
                      map_char.insert(pair<char, char>(s[i],t[i]));
                 }
                 else
                 {
                     if(it_map->second != t[i])
                     return false;
                 }

         }
         return true;
    }
};

總結:

1、相關基礎知識:STL之map

結果:

這裏寫圖片描述

發佈了32 篇原創文章 · 獲贊 2 · 訪問量 1萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章