zoukankan      html  css  js  c++  java
  • Leetcode 383 Ransom Note

    Given
 an 
arbitrary
 ransom
 note
 string 
and 
another 
string 
containing 
letters from
 all 
the 
magazines,
 write 
a 
function 
that 
will 
return 
true 
if 
the 
ransom 
 note 
can 
be 
constructed 
from 
the 
magazines ; 
otherwise, 
it 
will 
return 
false. 



    Each 
letter
 in
 the
 magazine 
string 
can
 only 
be
 used 
once
 in
 your 
ransom
 note.

    Note:
    You may assume that both strings contain only lowercase letters.

    canConstruct("a", "b") -> false
    canConstruct("aa", "ab") -> false
    canConstruct("aa", "aab") -> true


    Solution:

    • hashtable:asdf
     public bool CanConstruct(string ransomNote, string magazine) {
            int magLength = magazine.Length;
            int ranLength = ransomNote.Length;
    
            if(ranLength>magLength) return false;
            if(ranLength==0) return true;
            Hashtable hashtable = new Hashtable();
            
            for(int j = 0; j< ranLength;j++)
            {
                if(hashtable.ContainsKey(ransomNote[j]))
                {
                    int temp = (int)hashtable[ransomNote[j]];
                    temp++;
                    hashtable[ransomNote[j]] = temp;
                }
                else
                {
                    hashtable.Add(ransomNote[j],1);
                }
            }
            
            for(int i= 0; i< magLength;i++)
            {
                if(hashtable.ContainsKey(magazine[i]))
                {
                    int temp = (int)hashtable[magazine[i]];
                    if(--temp <=0)  hashtable.Remove(magazine[i]);
                    else hashtable[magazine[i]] = temp;
                }
                if(hashtable.Count==0) return true;
            }
            
            
            return false;
        }
    • 2 pointer & sorting
    public bool CanConstruct(string ransomNote, string magazine) {
            int magLength = magazine.Length;
            int ranLength = ransomNote.Length;
    
            if(ranLength>magLength) return false;
            if(ranLength==0) return true;
            
            var charR = ransomNote.ToCharArray();
            var charM = magazine.ToCharArray();
            Array.Sort(charR);
            Array.Sort(charM);
            int i = 0;
            int j = 0;
            while(j<magLength && i< ranLength)
            {
                if(charR[i] == charM[j])
                {
                    i++;
                    j++;
                }
                else if(charR[i] < charM[j])
                {
                   return false;
                }
                else j++;
            }
            return (i== ranLength);
     
        }
  • 相关阅读:
    JS正则表达式验证账号、手机号、电话和邮箱
    Asp.Net Mvc导出Excel
    后台截取姓名,只留姓名字带*号覆盖
    后台根据身份证号码截取性别和出生日期
    后台传个变量,前台页面显示对应的中文
    第一次封装JS文件之滚动条
    阿里巴巴17校招测试题目(Jquery解法)
    阿里巴巴17实习生招聘编程题目(JavaScript解法)
    SofewareTesting hw3
    PHP之login
  • 原文地址:https://www.cnblogs.com/renyualbert/p/5782452.html
Copyright © 2011-2022 走看看