Cum să verificați dacă două șiruri sunt anagrame unele de altele

Cum să verificați dacă două șiruri sunt anagrame unele de altele

O anagramă este un șir format prin rearanjarea literelor unui șir diferit. Verificarea dacă două șiruri de caractere sunt anagrame unele pe altele poate suna dificil, dar este doar puțin dificil și înșelător de simplu. În acest articol, veți învăța cum să verificați dacă două șiruri sunt anagrame unele cu altele folosind C ++, Python și JavaScript.





Declarație problemă

Ți se dau două șiruri s1 și s2, trebuie să verifici dacă cele două șiruri sunt sau nu anagrame.





Exemplul 1 : Fie s1 = „creativ” și s2 = „reactiv”.





Deoarece cel de-al doilea șir poate fi format prin rearanjarea literelor primului șir și invers, astfel cele două șiruri sunt anagrame una față de alta.

Exemplul 2 : Să s1 = „Peter Piper a ales un peck de ardei murați” și s2 = „Un peck de ardei murați a ales Peter Piper”.



Deoarece cel de-al doilea șir nu poate fi format prin rearanjarea literelor primului șir și invers, astfel cele două șiruri nu sunt anagramă una cu cealaltă.

Proces pentru verificarea dacă două șiruri sunt anagrame unele de altele

Puteți urmări abordarea de mai jos pentru a verifica dacă cele două șiruri de caractere sunt anagrame unele de altele:





  1. Comparați lungimea ambelor șiruri.
  2. Dacă lungimea ambelor șiruri nu este aceeași, înseamnă că nu pot fi anagramă una cu cealaltă. Astfel, întoarceți fals.
  3. Dacă lungimea ambelor șiruri este aceeași, continuați mai departe.
  4. Sortează ambele șiruri.
  5. Comparați ambele șiruri sortate.
  6. Dacă ambele șiruri sortate sunt aceleași, înseamnă că sunt anagrame unele cu altele. Astfel, reveniți adevărat.
  7. Dacă ambele șiruri sortate sunt diferite, înseamnă că nu sunt anagrame unele cu altele. Astfel, întoarceți fals.

Legate de: Cum să verificați dacă un șir este un palindrom

Program C ++ pentru a verifica dacă două șiruri sunt anagrame unele de altele

Mai jos este programul C ++ pentru a verifica dacă două șiruri sunt sau nu anagrame:





#include
using namespace std;
bool checkAnagrams(string s1, string s2)
{
int size1 = s1.length();
int size2 = s2.length();
// If the length of both strings are not the same,
// it means they can't be anagrams of each other.
// Thus, return false.
if (size1 != size2)
{
return false;
}
sort(s1.begin(), s1.end());
sort(s2.begin(), s2.end());
for (int i = 0; i {
if (s1[i] != s2[i])
{
return false;
}
}
return true;
}
int main()
{
string s1 = 'listen';
string s2 = 'silent';
cout << 'String 1: ' << s1 << endl;
cout << 'String 2: ' << s2 << endl;
if(checkAnagrams(s1, s2))
{
cout << 'Yes, the two strings are anagrams of each other' << endl;
}
else
{
cout << 'No, the two strings are not anagrams of each other' << endl;
}
string s3 = 'Welcome to MUO';
string s4 = 'MUO to Welcome';
cout << 'String 3: ' << s3 << endl;
cout << 'String 4: ' << s4 << endl;
if(checkAnagrams(s3, s4))
{
cout << 'Yes, the two strings are anagrams of each other' << endl;
}
else
{
cout << 'No, the two strings are not anagrams of each other' << endl;
}
string s5 = 'Peter Piper picked a peck of pickled peppers';
string s6 = 'A peck of pickled peppers Peter Piper picked';
cout << 'String 5: ' << s5 << endl;
cout << 'String 6: ' << s6 << endl;
if(checkAnagrams(s5, s6))
{
cout << 'Yes, the two strings are anagrams of each other' << endl;
}
else
{
cout << 'No, the two strings are not anagrams of each other' << endl;
}
string s7 = 'She sells seashells by the seashore';
string s8 = 'seashells by the seashore';
cout << 'String 7: ' << s7 << endl;
cout << 'String 8: ' << s8 << endl;
if(checkAnagrams(s7, s8))
{
cout << 'Yes, the two strings are anagrams of each other' << endl;
}
else
{
cout << 'No, the two strings are not anagrams of each other' << endl;
}
string s9 = 'creative';
string s10 = 'reactive';
cout << 'String 9: ' << s9 << endl;
cout << 'String 10: ' << s10 << endl;
if(checkAnagrams(s9, s10))
{
cout << 'Yes, the two strings are anagrams of each other' << endl;
}
else
{
cout << 'No, the two strings are not anagrams of each other' << endl;
}
return 0;
}

Ieșire:

String 1: listen
String 2: silent
Yes, the two strings are anagrams of each other
String 3: Welcome to MUO
String 4: MUO to Welcome
Yes, the two strings are anagrams of each other
String 5: Peter Piper picked a peck of pickled peppers
String 6: A peck of pickled peppers Peter Piper picked
No, the two strings are not anagrams of each other
String 7: She sells seashells by the seashore
String 8: seashells by the seashore
No, the two strings are not anagrams of each other
String 9: creative
String 10: reactive
Yes, the two strings are anagrams of each other

În legătură: Cum să numărăm aparițiile unui caracter dat într-un șir

Programul Python pentru a verifica dacă două șiruri sunt anagrame unele de altele

Mai jos este programul Python pentru a verifica dacă două șiruri sunt sau nu anagrame:

def checkAnagrams(s1, s2):
size1 = len(s1)
size2 = len(s2)
# If the length of both strings are not the same,
# it means they can't be anagrams of each other.
# Thus, return false.
if size1 != size2:
return 0
s1 = sorted(s1)
s2 = sorted(s2)
for i in range(0, size1):
if s1[i] != s2[i]:
return False
return True

s1 = 'listen'
s2 = 'silent'
print('String 1: ', s1)
print('String 2: ', s2)
if(checkAnagrams(s1, s2)):
print('Yes, the two strings are anagrams of each other')
else:
print('No, the two strings are not anagrams of each other')
s3 = 'Welcome to MUO'
s4 = 'MUO to Welcome'
print('String 3: ', s3)
print('String 4: ', s4)
if(checkAnagrams(s3, s4)):
print('Yes, the two strings are anagrams of each other')
else:
print('No, the two strings are not anagrams of each other')
s5 = 'Peter Piper picked a peck of pickled peppers'
s6 = 'A peck of pickled peppers Peter Piper picked'
print('String 5: ', s5)
print('String 6: ', s6)
if(checkAnagrams(s5, s6)):
print('Yes, the two strings are anagrams of each other')
else:
print('No, the two strings are not anagrams of each other')
s7 = 'She sells seashells by the seashore'
s8 = 'seashells by the seashore'
print('String 7: ', s7)
print('String 8: ', s8)
if(checkAnagrams(s7, s8)):
print('Yes, the two strings are anagrams of each other')
else:
print('No, the two strings are not anagrams of each other')
s9 = 'creative'
s10 = 'reactive'
print('String 9: ', s9)
print('String 10: ', s10)
if(checkAnagrams(s9, s10)):
print('Yes, the two strings are anagrams of each other')
else:
print('No, the two strings are not anagrams of each other')

Ieșire:

String 1: listen
String 2: silent
Yes, the two strings are anagrams of each other
String 3: Welcome to MUO
String 4: MUO to Welcome
Yes, the two strings are anagrams of each other
String 5: Peter Piper picked a peck of pickled peppers
String 6: A peck of pickled peppers Peter Piper picked
No, the two strings are not anagrams of each other
String 7: She sells seashells by the seashore
String 8: seashells by the seashore
No, the two strings are not anagrams of each other
String 9: creative
String 10: reactive
Yes, the two strings are anagrams of each other

Related: Cum să găsești vocale, consoane, cifre și caractere speciale într-un șir

Verificați dacă două șiruri de caractere sunt anagrame unele de altele în JavaScript

Mai jos este programul JavaScript pentru a verifica dacă două șiruri sunt sau nu anagrame:

function checkAnagrams(s1, s2) {
let size1 = s1.length;
let size2 = s2.length;
// If the length of both strings are not the same,
// it means they can't be anagrams of each other.
// Thus, return false.
if (size1 != size2)
{
return false;
}
s1.sort();
s2.sort();
for (let i = 0; i {
if (s1[i] != s2[i])
{
return false;
}
}
return true;
}

var s1 = 'listen';
var s2 = 'silent';
document.write('String 1: ' + s1 + '
');
document.write('String 2: ' + s2 + '
');
if(checkAnagrams(s1.split(''), s2.split(''))) {
document.write('Yes, the two strings are anagrams of each other' + '
');
} else {
document.write('No, the two strings are not anagrams of each other' + '
');
}
var s3 = 'Welcome to MUO';
var s4 = 'MUO to Welcome';
document.write('String 3: ' + s3 + '
');
document.write('String 4: ' + s4 + '
');
if(checkAnagrams(s3.split(''), s4.split(''))) {
document.write('Yes, the two strings are anagrams of each other' + '
');
} else {
document.write('No, the two strings are not anagrams of each other' + '
');
}
var s5 = 'Peter Piper picked a peck of pickled peppers';
var s6 = 'A peck of pickled peppers Peter Piper picked';
document.write('String 5: ' + s5 + '
');
document.write('String 6: ' + s6 + '
');
if(checkAnagrams(s5.split(''), s6.split(''))) {
document.write('Yes, the two strings are anagrams of each other' + '
');
} else {
document.write('No, the two strings are not anagrams of each other' + '
');
}
var s7 = 'She sells seashells by the seashore';
var s8 = 'seashells by the seashore';
document.write('String 7: ' + s7 + '
');
document.write('String 8: ' + s8 + '
');
if(checkAnagrams(s7.split(''), s8.split(''))) {
document.write('Yes, the two strings are anagrams of each other' + '
');
} else {
document.write('No, the two strings are not anagrams of each other' + '
');
}
var s9 = 'creative';
var s10 = 'reactive';
document.write('String 9: ' + s9 + '
');
document.write('String 10: ' + s10 + '
');
if(checkAnagrams(s9.split(''), s10.split(''))) {
document.write('Yes, the two strings are anagrams of each other' + '
');
} else {
document.write('No, the two strings are not anagrams of each other' + '
');
}

Ieșire:

String 1: listen
String 2: silent
Yes, the two strings are anagrams of each other
String 3: Welcome to MUO
String 4: MUO to Welcome
Yes, the two strings are anagrams of each other
String 5: Peter Piper picked a peck of pickled peppers
String 6: A peck of pickled peppers Peter Piper picked
No, the two strings are not anagrams of each other
String 7: She sells seashells by the seashore
String 8: seashells by the seashore
No, the two strings are not anagrams of each other
String 9: creative
String 10: reactive
Yes, the two strings are anagrams of each other

Legate de: Cum găsiți valoarea ASCII a unui personaj?

Folosiți resursele potrivite pentru a învăța să codificați

Dacă doriți să vă consolidați abilitățile de codare, este important să învățați concepte noi și să petreceți timp folosindu-le. O modalitate de a face acest lucru este cu aplicațiile de programare, care vă vor ajuta să învățați diferite concepte de programare, distrându-vă în același timp.

Acțiune Acțiune Tweet E-mail 8 aplicații pentru a vă ajuta să învățați să codați pentru Ziua Internațională a Programatorilor

Doriți să vă perfecționați abilitățile de codare? Aceste aplicații și site-uri web vă vor ajuta să învățați programarea în ritmul dvs.

cum se dezactivează descrierea audio pe prime
Citiți în continuare Subiecte asemănătoare
  • Programare
  • JavaScript
  • Piton
  • Programare C
Despre autor Yuvraj Chandra(60 de articole publicate)

Yuvraj este student la Universitatea din Delhi, India. Este pasionat de dezvoltarea web Full Stack. Când nu scrie, explorează profunzimea diferitelor tehnologii.

Mai multe de la Yuvraj Chandra

Aboneaza-te la newsletter-ul nostru

Alăturați-vă newsletter-ului pentru sfaturi tehnice, recenzii, cărți electronice gratuite și oferte exclusive!

Faceți clic aici pentru a vă abona