File tree 2 files changed +17
-3
lines changed
UnitTest/DataStructuresTests
2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -194,15 +194,20 @@ public bool Remove(T item, out T deleted)
194
194
/// </summary>
195
195
public bool Contains ( T item )
196
196
{
197
- T itemOut ;
198
- return Find ( item , out itemOut ) ;
197
+ return Find ( item , out var _ ) ;
199
198
}
200
199
201
200
/// <summary>
202
201
/// Look for an element and return it if found
203
202
/// </summary>
204
203
public bool Find ( T item , out T result )
205
204
{
205
+ result = default ;
206
+ if ( IsEmpty )
207
+ {
208
+ return false ;
209
+ }
210
+
206
211
var current = _firstNode ;
207
212
208
213
// 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)
219
224
return true ;
220
225
}
221
226
222
- result = default ( T ) ;
223
227
return false ;
224
228
}
225
229
Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ namespace UnitTest.DataStructuresTests
6
6
{
7
7
public static class SkipListTest
8
8
{
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
+
9
19
[ Fact ]
10
20
public static void AddOneElement ( )
11
21
{
You can’t perform that action at this time.
0 commit comments