ArtsAutosBooksBusinessEducationEntertainmentFamilyFashionFoodGamesGenderHealthHolidaysHomeHubPagesPersonal FinancePetsPoliticsReligionSportsTechnologyTravel

In computer programming, how do I check if two Strings are Anagrams?

Updated on September 4, 2015
Basketball, stored as a string with a zero-based index, is a collection of the individual characters.
Basketball, stored as a string with a zero-based index, is a collection of the individual characters.

What are strings?

In most programming languages, a string is simply an array of individual characters. This is common among all languages that support strings. The actual implementation differs between languages.

Some programming languages allow characters to be changed inside the string, while others do not. When a string can have its characters edited, it is called "mutable." When a string cannot have its characters edited, it is called "immutable." C++ allows the individual characters of a string to be edited, so it is mutable. C# does not allow the individual characters of a string to be edited, so it is immutable. Any edits to a string in C# results in the program allocating enough memory for the new string, and then creating the new string in that place.

Another thing to be aware of with your programming language of choice is how the environment indexes collections. Both C++ and C# will refer to the very first character as being in position 0. If a string had 10 characters, such as "Basketball", then the first character would be in position 0 and the final character in position 9. This is called "zero-based indexing." Other languages will refer to the first character as position 1, and the final character as position 10. This is called "one-based indexing." Visual Basic uses one-based indexing by default, but can be set to use zero-based indexing. SmallTalk and Lua both use one-based indexing as well.

What is an anagram?

An anagram is simply two different words that both use the same number of each letter. For example, the words "Aether" and "Heater" are anagrams. Both contain one letter "A", two letters "E", one letter "H", one letter "R", and one letter "T." Notice how there is no distinction between uppercase and lowercase letters here.

Anagrams are easy to spot within the English language, but in order to establish a definition in a computer program, we are going to set some rules about the definition of an anagram.

1. Two words that are the same are not considered an anagram.

2. There is no distinction between uppercase and lowercase letter characters.

3. Strings that contain characters other than letters will not be considered. Sorry, contractions.

Checking if two strings are anagrams

There are a number of different ways to check if two strings are an anagram.

The first way is to use nested loops to make sure each character appearing in the first string also appears in the second. I don't recommend this method, because it results in a solution that is O(N ^ 2) time.

The second way is to sort both strings, then compare each character. I don't recommend this method for two reasons.

  1. Sorting the strings will take O(N log(N)) time on average if QuickSort or MergeSort are implemented.
  2. Some languages will have immutable strings, making sorting difficult.

The final implementation is to iterate over each string once, counting the number of each character as you do so. After iterating over each string, make sure the counts of all characters are the same. This is my preferred method since it is done in O(N) time.

Anagram Implementation: C++

#include <iostream>
#include <string>
#include <ctype.h>

using namespace std;

bool CheckAlphaOnly(string str)
{
    //Check if each character of a given string is alphabetic.
    //If any character fails, then return false.
    //Otherwise, return true.
    for (uint x = 0; x < str.length(); x++)
    {
        if (isalpha(str[x]) == false)
            return false;
    }
    
    return true;
}

bool IsAnagram(string str1, string str2)
{
    //Check if two strings are anagrams.
    //If strings are not equal length, return false.
    if (str1.length() != str2.length())
        return false;
    
    //Arrays to count the number of each alphabetic character.
    int arr1[26] = { }, arr2[26] = { };
    int index;
    
    //Count characters for str1.
    for (uint x = 0; x < str1.length(); x++)
    {
        index = (int)toupper(str1[x]) - (int)'A';
        arr1[index]++;
    }
    
    //Count characters for str2.
    for (uint x = 0; x < str2.length(); x++)
    {
        index = (int)toupper(str2[x]) - (int)'A';
        arr2[index]++;
    }
    
    //Check to see if the count for each character is the same.
    //If any character check fails, return false.
    //Otherwise, return true.
    for (int x = 0; x < 26; x++)
    {
        if (arr1[x] != arr2[x])
            return false;
    }
    
    return true;
}

int main()
{
    cout << "Please enter two strings.\n";
    cout << "Alphabetic characters only.\n\n";
    
    string str1 = "", str2 = "";
    
    cout << "String 1: ";
    getline(cin, str1);
    cout << "\nString 2: ";
    getline(cin, str2);
    
    if (CheckAlphaOnly(str1) && CheckAlphaOnly(str2))
    {
        if (str1 == str2)
            cout << "\nThese strings are the same.";
        else if (IsAnagram(str1, str2))
            cout << "\nThese strings are anagrams.";   
        else
            cout << "\nThese strings are not anagrams.";
            
        return 0;
    }
    else
    {
        cout << "\nError: One or both strings contained non-alphabetic characters.";
        
        return -1;
    }
}

Anagram Implementation: C#

using System;

namespace Anagrams
{
    class Program
    {
        static bool CheckAlphaOnly(string str)
        {
            //Check if each character of a given string is alphabetic.
            //If any character fails, then return false.
            //Otherwise, return true.
            for (int x = 0; x < str.Length; x++)
            {
                if (Char.IsLetter(str[x]) == false)
                    return false;
            }
    
            return true;
        }

        static bool IsAnagram(string str1, string str2)
        {
            //Check if two strings are anagrams.
            //If strings are not equal length, return false.
            if (str1.Length != str2.Length)
                return false;
    
            //Arrays to count the number of each alphabetic character.
            int[] arr1 = new int[26], arr2 = new int [26];

            //Initialize the arrays.
            for (int x = 0; x < 26; x ++)
            {
                arr1[x] = 0;
                arr2[x] = 0;
            }

            int index;
    
            //Count characters for str1.
            for (int x = 0; x < str1.Length; x++)
            {
                index = (int)Char.ToUpper(str1[x]) - (int)'A';
                arr1[index]++;
            }
    
            //Count characters for str2.
            for (int x = 0; x < str2.Length; x++)
            {
                index = (int)Char.ToUpper(str2[x]) - (int)'A';
                arr2[index]++;
            }
    
            //Check to see if the count for each character is the same.
            //If any character check fails, return false.
            //Otherwise, return true.
            for (int x = 0; x < 26; x++)
            {
                if (arr1[x] != arr2[x])
                    return false;
            }
    
            return true;
        }

        public static void Main()
        {
            Console.WriteLine("Please enter two strings.");
            Console.WriteLine("Alphabetic characters only.\n");
    
            string str1 = "", str2 = "";
    
            Console.Write("String 1: ");
            str1 = Console.ReadLine();
            Console.Write("\nString 2: ");
            str2 = Console.ReadLine();
    
            if (CheckAlphaOnly(str1) && CheckAlphaOnly(str2))
            {
                if (str1 == str2)
                    Console.WriteLine("\nThese strings are the same.");
                else if (IsAnagram(str1, str2))
                    Console.WriteLine("\nThese strings are anagrams.");   
                else
                    Console.WriteLine("\nThese strings are not anagrams.");
            }
            else
            {
                Console.WriteLine("\nError: One or both strings contained non-alphabetic characters.");
            }

            Console.WriteLine("\nPlease press [ENTER] to exit...");
            Console.ReadLine();
        }
    }
}
working

This website uses cookies

As a user in the EEA, your approval is needed on a few things. To provide a better website experience, hubpages.com uses cookies (and other similar technologies) and may collect, process, and share personal data. Please choose which areas of our service you consent to our doing so.

For more information on managing or withdrawing consents and how we handle data, visit our Privacy Policy at: https://corp.maven.io/privacy-policy

Show Details
Necessary
HubPages Device IDThis is used to identify particular browsers or devices when the access the service, and is used for security reasons.
LoginThis is necessary to sign in to the HubPages Service.
Google RecaptchaThis is used to prevent bots and spam. (Privacy Policy)
AkismetThis is used to detect comment spam. (Privacy Policy)
HubPages Google AnalyticsThis is used to provide data on traffic to our website, all personally identifyable data is anonymized. (Privacy Policy)
HubPages Traffic PixelThis is used to collect data on traffic to articles and other pages on our site. Unless you are signed in to a HubPages account, all personally identifiable information is anonymized.
Amazon Web ServicesThis is a cloud services platform that we used to host our service. (Privacy Policy)
CloudflareThis is a cloud CDN service that we use to efficiently deliver files required for our service to operate such as javascript, cascading style sheets, images, and videos. (Privacy Policy)
Google Hosted LibrariesJavascript software libraries such as jQuery are loaded at endpoints on the googleapis.com or gstatic.com domains, for performance and efficiency reasons. (Privacy Policy)
Features
Google Custom SearchThis is feature allows you to search the site. (Privacy Policy)
Google MapsSome articles have Google Maps embedded in them. (Privacy Policy)
Google ChartsThis is used to display charts and graphs on articles and the author center. (Privacy Policy)
Google AdSense Host APIThis service allows you to sign up for or associate a Google AdSense account with HubPages, so that you can earn money from ads on your articles. No data is shared unless you engage with this feature. (Privacy Policy)
Google YouTubeSome articles have YouTube videos embedded in them. (Privacy Policy)
VimeoSome articles have Vimeo videos embedded in them. (Privacy Policy)
PaypalThis is used for a registered author who enrolls in the HubPages Earnings program and requests to be paid via PayPal. No data is shared with Paypal unless you engage with this feature. (Privacy Policy)
Facebook LoginYou can use this to streamline signing up for, or signing in to your Hubpages account. No data is shared with Facebook unless you engage with this feature. (Privacy Policy)
MavenThis supports the Maven widget and search functionality. (Privacy Policy)
Marketing
Google AdSenseThis is an ad network. (Privacy Policy)
Google DoubleClickGoogle provides ad serving technology and runs an ad network. (Privacy Policy)
Index ExchangeThis is an ad network. (Privacy Policy)
SovrnThis is an ad network. (Privacy Policy)
Facebook AdsThis is an ad network. (Privacy Policy)
Amazon Unified Ad MarketplaceThis is an ad network. (Privacy Policy)
AppNexusThis is an ad network. (Privacy Policy)
OpenxThis is an ad network. (Privacy Policy)
Rubicon ProjectThis is an ad network. (Privacy Policy)
TripleLiftThis is an ad network. (Privacy Policy)
Say MediaWe partner with Say Media to deliver ad campaigns on our sites. (Privacy Policy)
Remarketing PixelsWe may use remarketing pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to advertise the HubPages Service to people that have visited our sites.
Conversion Tracking PixelsWe may use conversion tracking pixels from advertising networks such as Google AdWords, Bing Ads, and Facebook in order to identify when an advertisement has successfully resulted in the desired action, such as signing up for the HubPages Service or publishing an article on the HubPages Service.
Statistics
Author Google AnalyticsThis is used to provide traffic data and reports to the authors of articles on the HubPages Service. (Privacy Policy)
ComscoreComScore is a media measurement and analytics company providing marketing data and analytics to enterprises, media and advertising agencies, and publishers. Non-consent will result in ComScore only processing obfuscated personal data. (Privacy Policy)
Amazon Tracking PixelSome articles display amazon products as part of the Amazon Affiliate program, this pixel provides traffic statistics for those products (Privacy Policy)
ClickscoThis is a data management platform studying reader behavior (Privacy Policy)