Java [Leetcode 205]isomorphic Strings

Source: Internet
Author: User

Title Description:

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

The strings is isomorphic if the characters in s can is replaced to get t.

All occurrences of a character must is replaced with another character while preserving the order of characters. No, characters may map to the same character and a character may map to itself.

For example,
Given "egg" , "add" return True.

Given "foo" , "bar" return FALSE.

Given "paper" , "title" return True.

Problem Solving Ideas:

Mapping with arrays. Note that each time the dictionary map is assigned a value of i+1, this is to prevent confusion with the assignment at the time of the first mapping. (because the initialization of the array is assigned a value of 0, if each assignment is I, then the first assignment is also 0, so it is confusing).

The code is as follows:

public class Solution {public    Boolean isisomorphic (string s, String t) {        int[] MapS = new int[128];        int[] mapt = new int[128];        for (int i = 0; i < s.length (); i++) {        if (Maps[s.charat (i)] = Mapt[t.charat (i)])        return false;        Maps[s.charat (i)] = Mapt[t.charat (i)] = i + 1;        }        return true;    }}

  

Java [Leetcode 205]isomorphic Strings

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.