Skip to content

Instantly share code, notes, and snippets.

@InterviewBytes
Created June 13, 2017 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InterviewBytes/c1beaafd177cea95261cbd4da0b11f7a to your computer and use it in GitHub Desktop.
Save InterviewBytes/c1beaafd177cea95261cbd4da0b11f7a to your computer and use it in GitHub Desktop.
TreeLinkNode
package com.interviewbytes.trees;
public class TreeLinkNode {
int val;
TreeLinkNode left, right, next;
TreeLinkNode(int x) {
val = x;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment