-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTreeNode.java
More file actions
39 lines (35 loc) · 869 Bytes
/
Copy pathTreeNode.java
File metadata and controls
39 lines (35 loc) · 869 Bytes
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
package com.leetcode.tree;
/**
* Created by charles on 12/22/16.
*/
public class TreeNode {
public int val;
public TreeNode left;
public TreeNode right;
public TreeNode(int x) {
this.val = x;
left = null;
right = null;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof TreeNode)) {
return false;
}
TreeNode node = (TreeNode) o;
/**
* be careful, for tree node, no need to check equal for left/right
*/
return node.val == ((TreeNode) o).val;
}
@Override
/** may need override hashcode if use treenode class with hashmap or set */
public int hashCode() {
int result = 17;
result = 31 * result + this.val;
return result;
}
}