forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Permutations.cs
94 lines (82 loc) · 3.04 KB
/
Permutations.cs
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
/***
* Algorithms for computing the list of permutations of a string and checking if two strings are anagrams of each other.
*/
using System;
using System.Collections.Generic;
namespace Algorithms.Strings
{
public static class Permutations
{
/// <summary>
/// Private Helper. Computes permutations recursively for string source.
/// </summary>
private static HashSet<string> _permutations(string source)
{
var perms = new HashSet<string>();
if (source.Length == 1)
{
perms.Add(source);
}
else if (source.Length > 1)
{
int lastIndex = source.Length - 1;
string lastChar = Convert.ToString(source[lastIndex]);
string substring = source.Substring(0, lastIndex);
perms = _mergePermutations(_permutations(substring), lastChar);
}
return perms;
}
/// <summary>
/// Private helper. Merges a set of permutations with a character.
/// </summary>
private static HashSet<string> _mergePermutations(HashSet<string> permutations, string character)
{
var merges = new HashSet<string>();
foreach (var perm in permutations)
{
for (int i = 0; i < perm.Length; ++i)
{
var newMerge = perm.Insert(i, character);
if (!merges.Contains(newMerge))
merges.Add(newMerge);
}
}
return merges;
}
/// <summary>
/// Computes the permutations of a string.
/// </summary>
public static HashSet<string> ComputeDistinct(string source)
{
return _permutations(source);
}
/// <summary>
/// Determines if the Other string is an anargram of the Source string.
/// </summary>
public static bool IsAnargram(string source, string other)
{
if (string.IsNullOrEmpty(source) || string.IsNullOrEmpty(other))
return false;
if (source.Length != other.Length)
return false;
if (source.Equals(other, StringComparison.Ordinal))
return true;
int len = source.Length;
// Hash set which will contains all the characters present in input source.
var hashSetSourceChars = new HashSet<char>();
var hashSetOtherChars = new HashSet<char>();
for (int i = 0; i < len; i++)
{
hashSetSourceChars.Add(source[i]);
hashSetOtherChars.Add(other[i]);
}
for (int i = 0; i < len; i++)
{
// Inputs are not Anargram if characers from *other are not present in *source.
if (!hashSetSourceChars.Contains(other[i])) return false;
if (!hashSetOtherChars.Contains(source[i])) return false;
}
return true;
}
}
}