-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_1019Test.java
43 lines (36 loc) · 1.37 KB
/
_1019Test.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
package com.fishercoder;
import com.fishercoder.common.classes.ListNode;
import com.fishercoder.common.utils.LinkedListUtils;
import com.fishercoder.solutions._1019;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.assertArrayEquals;
public class _1019Test {
private static _1019.Solution1 solution1;
private static _1019.Solution2 solution2;
@BeforeClass
public static void setup() {
solution1 = new _1019.Solution1();
solution2 = new _1019.Solution2();
}
@Test
public void test1() {
ListNode head = LinkedListUtils.contructLinkedList(new int[]{2, 1, 5});
assertArrayEquals(new int[]{5, 5, 0}, solution1.nextLargerNodes(head));
}
@Test
public void test2() {
ListNode head = LinkedListUtils.contructLinkedList(new int[]{2, 7, 4, 3, 5});
assertArrayEquals(new int[]{7, 0, 5, 5, 0}, solution1.nextLargerNodes(head));
}
@Test
public void test3() {
ListNode head = LinkedListUtils.contructLinkedList(new int[]{1, 7, 5, 1, 9, 2, 5, 1});
assertArrayEquals(new int[]{7, 9, 9, 9, 0, 5, 0, 0}, solution1.nextLargerNodes(head));
}
@Test
public void test4() {
ListNode head = LinkedListUtils.contructLinkedList(new int[]{2, 7, 4, 3, 5});
assertArrayEquals(new int[]{7, 0, 5, 5, 0}, solution2.nextLargerNodes(head));
}
}