Bridge Collapses in Washington State, Dumping at Least 3 Cars In River
-
The Interstate 5 bridge spanning the Skagit River in Washington state
collapsed Thursday evening. Several cars fell into the water, though
authorities ar...
1 hour ago
def con(Node n, int l, Node p) {
ReplyDeleteif (n == null) return;
l++;
if (l == LEVEL) {
if (p == null) p = n;
else p.next = n;
}
p = con(n.left, l++, p);
p = con(n.right, l++, p);
return p;
}