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 50 51 52 53 54 55 56 57 58 59 60 61 62
| import java.util.Scanner;
class Node { int val; Node next;
}
public class Main { public static void main(String[] args) {
}
public Node findX(Node l1, Node l2) { Node cl1 = l1; Node cl2 = l2; boolean hasChange1 = false; boolean hasChange2 = false;
while(cl1 != null && cl2 != null && cl1.equals(cl2)) { cl1 = cl1.next; cl2 = cl2.next;
if (cl1 == null && !hasChange11) { cl1 = l2; hasChange1 = !hasChange11; }
if (cl2 == null && !hasCange2) { cl2 = l1; hasChange2 = !hasChange2; } }
return cl1; } }
|