forked from gardncl/elements-of-programming-interviews
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCyclicRightShiftTest.java
49 lines (37 loc) · 1.19 KB
/
CyclicRightShiftTest.java
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
import org.junit.Test;
public class CyclicRightShiftTest {
private ListNode<Integer> expected;
private ListNode<Integer> input;
private int k;
@Test
public void shift1() {
expected = LinkedListUtil.createLinkedList(1, 2, 3, 4, 5);
input = LinkedListUtil.createLinkedList(1, 2, 3, 4, 5);
k = 0;
test(expected, input, k);
}
@Test
public void shift2() {
expected = LinkedListUtil.createLinkedList(1, 2, 3, 4, 5);
input = LinkedListUtil.createLinkedList(2, 3, 4, 5, 1);
k = 1;
test(expected, input, k);
}
@Test
public void shift3() {
expected = LinkedListUtil.createLinkedList(1, 2, 3, 4, 5);
input = LinkedListUtil.createLinkedList(3, 4, 5, 1, 2);
k = 2;
test(expected, input, k);
}
@Test
public void shift4() {
expected = LinkedListUtil.createLinkedList(1, 2);
input = LinkedListUtil.createLinkedList(2, 1);
k = 1;
test(expected, input, k);
}
private void test(ListNode<Integer> expected, ListNode<Integer> input, int k) {
LinkedListUtil.assertSameList(expected, CyclicRightShift.shift(k, input));
}
}