Skip to content

Commit 9cab153

Browse files
committedAug 5, 2020
Fixed Issue aalhour#139 A new SkipList<int> contains 0
1 parent f769be0 commit 9cab153

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed
 

‎DataStructures/Lists/SkipList.cs

+7-3
Original file line numberDiff line numberDiff line change
@@ -194,15 +194,20 @@ public bool Remove(T item, out T deleted)
194194
/// </summary>
195195
public bool Contains(T item)
196196
{
197-
T itemOut;
198-
return Find(item, out itemOut);
197+
return Find(item, out var _);
199198
}
200199

201200
/// <summary>
202201
/// Look for an element and return it if found
203202
/// </summary>
204203
public bool Find(T item, out T result)
205204
{
205+
result = default;
206+
if(IsEmpty)
207+
{
208+
return false;
209+
}
210+
206211
var current = _firstNode;
207212

208213
// Walk after all the nodes that have values less than the node we are looking for
@@ -219,7 +224,6 @@ public bool Find(T item, out T result)
219224
return true;
220225
}
221226

222-
result = default(T);
223227
return false;
224228
}
225229

‎UnitTest/DataStructuresTests/SkipListTest.cs

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ namespace UnitTest.DataStructuresTests
66
{
77
public static class SkipListTest
88
{
9+
[Fact]
10+
public static void EmptyList()
11+
{
12+
var skipList = new SkipList<int>();
13+
14+
Assert.True(skipList.Count == 0);
15+
Assert.True(skipList.IsEmpty);
16+
Assert.DoesNotContain(0, skipList);
17+
}
18+
919
[Fact]
1020
public static void AddOneElement()
1121
{

0 commit comments

Comments
 (0)
Please sign in to comment.