forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnagrams.java
More file actions
151 lines (144 loc) · 4.88 KB
/
Anagrams.java
File metadata and controls
151 lines (144 loc) · 4.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package com.thealgorithms.strings;
import java.util.Arrays;
import java.util.HashMap;
/**
* An anagram is a word or phrase formed by rearranging the letters of a different word or phrase,
* typically using all the original letters exactly once.[1]
* For example, the word anagram itself can be rearranged into nag a ram,
* also the word binary into brainy and the word adobe into abode.
* Reference from https://en.wikipedia.org/wiki/Anagram
*/
public final class Anagrams {
private Anagrams() {
}
/**
* Checks if two strings are anagrams by sorting the characters and comparing them.
* Time Complexity: O(n log n)
* Space Complexity: O(n)
*
* @param s the first string
* @param t the second string
* @return true if the strings are anagrams, false otherwise
*/
public static boolean areAnagramsBySorting(String s, String t) {
s = s.toLowerCase().replaceAll("[^a-z]", "");
t = t.toLowerCase().replaceAll("[^a-z]", "");
if (s.length() != t.length()) {
return false;
}
char[] c = s.toCharArray();
char[] d = t.toCharArray();
Arrays.sort(c);
Arrays.sort(d);
return Arrays.equals(c, d);
}
/**
* Checks if two strings are anagrams by counting the frequency of each character.
* Time Complexity: O(n)
* Space Complexity: O(1)
*
* @param s the first string
* @param t the second string
* @return true if the strings are anagrams, false otherwise
*/
public static boolean areAnagramsByCountingChars(String s, String t) {
s = s.toLowerCase().replaceAll("[^a-z]", "");
t = t.toLowerCase().replaceAll("[^a-z]", "");
int[] dict = new int[128];
for (char ch : s.toCharArray()) {
dict[ch]++;
}
for (char ch : t.toCharArray()) {
dict[ch]--;
}
for (int e : dict) {
if (e != 0) {
return false;
}
}
return true;
}
/**
* Checks if two strings are anagrams by counting the frequency of each character
* using a single array.
* Time Complexity: O(n)
* Space Complexity: O(1)
*
* @param s the first string
* @param t the second string
* @return true if the strings are anagrams, false otherwise
*/
public static boolean areAnagramsByCountingCharsSingleArray(String s, String t) {
s = s.toLowerCase().replaceAll("[^a-z]", "");
t = t.toLowerCase().replaceAll("[^a-z]", "");
if (s.length() != t.length()) {
return false;
}
int[] charCount = new int[26];
for (int i = 0; i < s.length(); i++) {
charCount[s.charAt(i) - 'a']++;
charCount[t.charAt(i) - 'a']--;
}
for (int count : charCount) {
if (count != 0) {
return false;
}
}
return true;
}
/**
* Checks if two strings are anagrams using a HashMap to store character frequencies.
* Time Complexity: O(n)
* Space Complexity: O(n)
*
* @param s the first string
* @param t the second string
* @return true if the strings are anagrams, false otherwise
*/
public static boolean areAnagramsUsingHashMap(String s, String t) {
s = s.toLowerCase().replaceAll("[^a-z]", "");
t = t.toLowerCase().replaceAll("[^a-z]", "");
if (s.length() != t.length()) {
return false;
}
HashMap<Character, Integer> charCountMap = new HashMap<>();
for (char c : s.toCharArray()) {
charCountMap.put(c, charCountMap.getOrDefault(c, 0) + 1);
}
for (char c : t.toCharArray()) {
if (!charCountMap.containsKey(c) || charCountMap.get(c) == 0) {
return false;
}
charCountMap.put(c, charCountMap.get(c) - 1);
}
return charCountMap.values().stream().allMatch(count -> count == 0);
}
/**
* Checks if two strings are anagrams using an array to track character frequencies.
* This approach optimizes space complexity by using only one array.
* Time Complexity: O(n)
* Space Complexity: O(1)
*
* @param s the first string
* @param t the second string
* @return true if the strings are anagrams, false otherwise
*/
public static boolean areAnagramsBySingleFreqArray(String s, String t) {
s = s.toLowerCase().replaceAll("[^a-z]", "");
t = t.toLowerCase().replaceAll("[^a-z]", "");
if (s.length() != t.length()) {
return false;
}
int[] freq = new int[26];
for (int i = 0; i < s.length(); i++) {
freq[s.charAt(i) - 'a']++;
freq[t.charAt(i) - 'a']--;
}
for (int count : freq) {
if (count != 0) {
return false;
}
}
return true;
}
}