题解 | #字符串字符匹配#

字符串字符匹配

http://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93

//哈希存储
import java.util.*;
import java.io.*;
public class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
        String s=null;
        while((s=br.readLine())!=null){
            char[] chars=s.toCharArray();
            String strlong=br.readLine();
            char[] charslong=strlong.toCharArray();
            int ashort[]=new int[26];
            int along[]=new int[26];
            for(int i=0;i<chars.length;i++){
                ashort[chars[i]-'a']=1;
            }
            for(int i=0;i<charslong.length;i++){
                along[charslong[i]-'a']=1;
            }
            int flag=0;
            for(int i=0;i<26;i++){
                if(ashort[i]==1 && along[i]!=1) flag=1;
            }
            if(flag==0) System.out.println("true");
            else if(flag==1) System.out.println("false");
        }
    }
}
全部评论

相关推荐

“校招”、“3-5年经验”
xiaolihuam...:逆向工程不是搞外挂的吗,好像现在大学生坐牢最多的就是诈骗罪和非法侵入计算机系统罪,发美金,还居家办公,就是怕被一锅端,
点赞 评论 收藏
分享
每晚夜里独自颤抖:这个在牛客不是老熟人了吗
点赞 评论 收藏
分享
06-15 18:44
黄淮学院 Java
Lynn012:如果是居民楼还是算了吧,看着有点野呢
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务