码迷,mamicode.com
首页 > 其他好文 > 详细

242 Valid Anagram

时间:2019-11-11 12:39:55      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:std   etc   auth   ali   ret   isa   str   function   lse   

/*
Author: Zoro
Date:   2019/11/10
Function:   Valid Anagram
Title:  leetcode 242
anagram.c
think:  桶排序思想
*/
#include <stdio.h>
#include <stdbool.h>
#include <string.h>

bool isAnagram(char *s, char *t) {
    int statS[26] = {0};
    int statT[26] = {0};
    int lenS = strlen(s);
    int lenT = strlen(t);
    int i;
    for (i=0; i<lenS; i++) {
        int index = s[i] - 'a';
        statS[index]++;
    }
    for (i=0; i<lenT; i++) {
        int index = t[i] - 'a';
        statT[index]++;
    }
    for (i=0; i<26; i++) {
        if (statS[i] != statT[i]) {
            return false;
        }
    }
    return true;
}

int main() {
    char* s = "hello";
    char* t = "ehllo";
    printf("%d\n", isAnagram(s, t));
    return 0;
}

242 Valid Anagram

标签:std   etc   auth   ali   ret   isa   str   function   lse   

原文地址:https://www.cnblogs.com/xuzhaoping/p/11833987.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!