Skip to content

Commit 2f28835

Browse files
Merge pull request #14 from justcoding121/master
Beta
2 parents 04737f0 + fad1989 commit 2f28835

File tree

217 files changed

+9253
-9097
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+9253
-9097
lines changed

.build/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Task Document -depends Build {
109109
git config --global user.email $env:github_email
110110
git config --global user.name "buildbot121"
111111
git add . -A
112-
git commit -m "Maintanance commit by build server"
112+
git commit -m "API documentation update by build server"
113113
git push origin master
114114

115115
#move cd back to current location

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,7 @@ FakesAssemblies/
202202
*.plg
203203

204204
# Visual Studio 6 workspace options file
205-
*.opt
205+
*.opt
206+
207+
# Docfx
208+
docs/manifest.json

Advanced.Algorithms.Tests/BitAlgorithms/GCD_Tests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ public class GCD_Tests
1414
[TestMethod]
1515
public void GCD_Smoke_Test()
1616
{
17-
Assert.AreEqual(3, GCD.Find(-9, 3));
18-
Assert.AreEqual(15, GCD.Find(45, 30));
17+
Assert.AreEqual(3, Gcd.Find(-9, 3));
18+
Assert.AreEqual(15, Gcd.Find(45, 30));
1919

20-
Assert.AreEqual(1, GCD.Find(3, 5));
20+
Assert.AreEqual(1, Gcd.Find(3, 5));
2121

2222
}
2323
}

Advanced.Algorithms.Tests/BitAlgorithms/IsMultipleOfNine_Tests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
namespace Advanced.Algorithms.Tests.BitAlgorithms
1010
{
11-
/// <summary>
12-
/// Problem details below
13-
/// http://www.geeksforgeeks.org/divisibility-9-using-bitwise-operators/
14-
/// </summary>
11+
1512
[TestClass]
1613
public class IsMultipleOfNine_Tests
1714
{

Advanced.Algorithms.Tests/BitAlgorithms/IsMultipleOfThree_Tests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
namespace Advanced.Algorithms.Tests.BitAlgorithms
1010
{
11-
/// <summary>
12-
/// Problem details below
13-
/// http://www.geeksforgeeks.org/write-an-efficient-method-to-check-if-a-number-is-multiple-of-3/
14-
/// </summary>
11+
1512
[TestClass]
1613
public class IsMultipleOfThree_Tests
1714
{

Advanced.Algorithms.Tests/BitAlgorithms/NextPowOfTwo_Tests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
namespace Advanced.Algorithms.Tests.BitAlgorithms
1010
{
11-
/// <summary>
12-
/// Problem details below
13-
/// http://www.geeksforgeeks.org/smallest-power-of-2-greater-than-or-equal-to-n/
14-
/// </summary>
11+
1512
[TestClass]
1613
public class NextPowOfTwo_Tests
1714
{

Advanced.Algorithms.Tests/DataStructures/Dictionary/Dictionary_Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Dictionary_Tests
1414
[TestMethod]
1515
public void Dictionary_SeparateChaining_Test()
1616
{
17-
var Dictionary = new AsDictionary<int, int>(DictionaryType.SeparateChaining);
17+
var Dictionary = new Dictionary<int, int>(DictionaryType.SeparateChaining);
1818
int nodeCount = 1000 * 10;
1919
//insert test
2020

@@ -60,7 +60,7 @@ public void Dictionary_SeparateChaining_Test()
6060
[TestMethod]
6161
public void Dictionary_OpenAddressing_Test()
6262
{
63-
var Dictionary = new AsDictionary<int, int>(DictionaryType.OpenAddressing);
63+
var Dictionary = new Dictionary<int, int>(DictionaryType.OpenAddressing);
6464
int nodeCount = 1000 * 10;
6565
//insert test
6666

Advanced.Algorithms.Tests/DataStructures/Dictionary/TreeDictionary_Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class TreeDictionary_Tests
1414
[TestMethod]
1515
public void TreeDictionary_Test()
1616
{
17-
var Dictionary = new AsTreeDictionary<int, int>();
17+
var Dictionary = new TreeDictionary<int, int>();
1818

1919
int nodeCount = 1000;
2020
//insert test

Advanced.Algorithms.Tests/DataStructures/HashSet/HashSet_Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class HashSet_Tests
1414
[TestMethod]
1515
public void HashSet_SeparateChaining_Test()
1616
{
17-
var HashSet = new AsHashSet<int>(HashSetType.SeparateChaining);
17+
var HashSet = new HashSet<int>(HashSetType.SeparateChaining);
1818
int nodeCount = 1000 * 10;
1919
//insert test
2020

@@ -60,7 +60,7 @@ public void HashSet_SeparateChaining_Test()
6060
[TestMethod]
6161
public void HashSet_OpenAddressing_Test()
6262
{
63-
var HashSet = new AsHashSet<int>(HashSetType.OpenAddressing);
63+
var HashSet = new HashSet<int>(HashSetType.OpenAddressing);
6464
int nodeCount = 1000 * 10;
6565
//insert test
6666

Advanced.Algorithms.Tests/DataStructures/Heap/Min/D-aryMinHeap_Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class AsD_aryMinTree_Tests
1414
/// A tree test
1515
/// </summary>
1616
[TestMethod]
17-
public void AsD_aryHeap_Test()
17+
public void D_aryHeap_Test()
1818
{
1919
var rnd = new Random();
2020
var initial = Enumerable.Range(0, 51).OrderBy(x => rnd.Next()).ToList();

0 commit comments

Comments
 (0)