Finding common characters in two strings

前端 未结 13 2505
终归单人心
终归单人心 2020-12-15 14:09

I am coding for the problem in which we got to count the number of common characters in two strings. Main part of the count goes like this

for(i=0; i < st         


        
相关标签:
13条回答
  • C implementation to run in O(n) time and constant space.

    #define ALPHABETS_COUNT 26 
    int commonChars(char *s1, char *s2)
    {
        int c_count = 0, i; 
        int arr1[ALPHABETS_COUNT] = {0}, arr2[ALPHABETS_COUNT] = {0};
    
        /* Compute the number of occurances of each character */
        while (*s1) arr1[*s1++-'a'] += 1;
        while (*s2) arr2[*s2++-'a'] += 1;       
    
        /* Increment count based on match found */
        for(i=0; i<ALPHABETS_COUNT; i++) {
            if(arr1[i] == arr2[i]) c_count += arr1[i];
            else if(arr1[i]>arr2[i] && arr2[i] != 0) c_count += arr2[i];
            else if(arr2[i]>arr1[i] && arr1[i] != 0) c_count += arr1[i];
        }
    
        return c_count;
    

    }

    0 讨论(0)
提交回复
热议问题