|
| 1 | +package solutions.data_structures.compare_two_linked_links; |
| 2 | + |
| 3 | +import java.io.BufferedWriter; |
| 4 | +import java.io.FileWriter; |
| 5 | +import java.io.IOException; |
| 6 | +import java.util.Scanner; |
| 7 | + |
| 8 | +public class Solution { |
| 9 | + |
| 10 | + static class SinglyLinkedListNode { |
| 11 | + public int data; |
| 12 | + public SinglyLinkedListNode next; |
| 13 | + |
| 14 | + public SinglyLinkedListNode(int nodeData) { |
| 15 | + this.data = nodeData; |
| 16 | + this.next = null; |
| 17 | + } |
| 18 | + } |
| 19 | + |
| 20 | + static class SinglyLinkedList { |
| 21 | + public SinglyLinkedListNode head; |
| 22 | + public SinglyLinkedListNode tail; |
| 23 | + |
| 24 | + public SinglyLinkedList() { |
| 25 | + this.head = null; |
| 26 | + this.tail = null; |
| 27 | + } |
| 28 | + |
| 29 | + public void insertNode(int nodeData) { |
| 30 | + SinglyLinkedListNode node = new SinglyLinkedListNode(nodeData); |
| 31 | + |
| 32 | + if (this.head == null) { |
| 33 | + this.head = node; |
| 34 | + } else { |
| 35 | + this.tail.next = node; |
| 36 | + } |
| 37 | + |
| 38 | + this.tail = node; |
| 39 | + } |
| 40 | + } |
| 41 | + |
| 42 | + public static void printSinglyLinkedList(SinglyLinkedListNode node, String sep, BufferedWriter bufferedWriter) throws IOException { |
| 43 | + while (node != null) { |
| 44 | + bufferedWriter.write(String.valueOf(node.data)); |
| 45 | + |
| 46 | + node = node.next; |
| 47 | + |
| 48 | + if (node != null) { |
| 49 | + bufferedWriter.write(sep); |
| 50 | + } |
| 51 | + } |
| 52 | + } |
| 53 | + |
| 54 | + // Complete the compareLists function below. |
| 55 | + |
| 56 | + /* |
| 57 | + * For your reference: |
| 58 | + * |
| 59 | + * SinglyLinkedListNode { |
| 60 | + * int data; |
| 61 | + * SinglyLinkedListNode next; |
| 62 | + * } |
| 63 | + * |
| 64 | + */ |
| 65 | + static boolean compareLists(SinglyLinkedListNode head1, SinglyLinkedListNode head2) { |
| 66 | + while(head1 != null && head2 != null) { |
| 67 | + if(head1.data != head2.data) { |
| 68 | + return false; |
| 69 | + } |
| 70 | + |
| 71 | + head1 = head1.next; |
| 72 | + head2 = head2.next; |
| 73 | + } |
| 74 | + |
| 75 | + return head1 == head2 && head1 == null; |
| 76 | + } |
| 77 | + |
| 78 | + private static final Scanner scanner = new Scanner(System.in); |
| 79 | + |
| 80 | + public static void main(String[] args) throws IOException { |
| 81 | + BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH"))); |
| 82 | + |
| 83 | + int tests = scanner.nextInt(); |
| 84 | + scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); |
| 85 | + |
| 86 | + for (int testsItr = 0; testsItr < tests; testsItr++) { |
| 87 | + SinglyLinkedList llist1 = new SinglyLinkedList(); |
| 88 | + |
| 89 | + int llist1Count = scanner.nextInt(); |
| 90 | + scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); |
| 91 | + |
| 92 | + for (int i = 0; i < llist1Count; i++) { |
| 93 | + int llist1Item = scanner.nextInt(); |
| 94 | + scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); |
| 95 | + |
| 96 | + llist1.insertNode(llist1Item); |
| 97 | + } |
| 98 | + |
| 99 | + SinglyLinkedList llist2 = new SinglyLinkedList(); |
| 100 | + |
| 101 | + int llist2Count = scanner.nextInt(); |
| 102 | + scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); |
| 103 | + |
| 104 | + for (int i = 0; i < llist2Count; i++) { |
| 105 | + int llist2Item = scanner.nextInt(); |
| 106 | + scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?"); |
| 107 | + |
| 108 | + llist2.insertNode(llist2Item); |
| 109 | + } |
| 110 | + |
| 111 | + boolean result = compareLists(llist1.head, llist2.head); |
| 112 | + |
| 113 | + bufferedWriter.write(String.valueOf(result ? 1 : 0)); |
| 114 | + bufferedWriter.newLine(); |
| 115 | + } |
| 116 | + |
| 117 | + bufferedWriter.close(); |
| 118 | + |
| 119 | + scanner.close(); |
| 120 | + } |
| 121 | +} |
0 commit comments