由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - F电面
相关主题
question about Leetcode #113 LeetCode – Path Sum II (Java)LeetCode 的 4 sum 问题 如何用hash table做呢?
问个Java的HashSet.contains的问题关于Hash_map
求点评:电话面试(今天第二天没有消息回复,感觉可能挂了)path sum II OJ 超时
leetcode的3sum的运行时间问题4sum o(n^2)超时
A家新鲜面经--都是经典题问一下OJ的Anagrams那道题
过不了leetcode Zigzag Level Order TraversalTree的traversal也分BFS和DFS?
又有leetcode题目来请教了LRU cache 问题
请教LeetCode的3SumLRU cache 超时
相关话题的讨论汇总
话题: integer话题: list话题: pos话题: hashmap
进入JobHunting版参与讨论
1 (共1页)
S***w
发帖数: 1014
h*******0
发帖数: 270
2
就一道题吗?楼主给了哪个方法的解答?

【在 S***w 的大作中提到】
: http://www.geeksforgeeks.org/print-binary-tree-vertical-order-s
: 这个题目

z***e
发帖数: 209
3
多谢分享. 是pre order吧.
S***w
发帖数: 1014
4
就一道
用 bfs + hashmap

【在 h*******0 的大作中提到】
: 就一道题吗?楼主给了哪个方法的解答?
c******n
发帖数: 4965
5
太变态了。 如果下面有十层complete binary tree, 那 node 5 跟1还算一列的么?

【在 S***w 的大作中提到】
: http://www.geeksforgeeks.org/print-binary-tree-vertical-order-s
: 这个题目

S***w
发帖数: 1014
6
还好啊

【在 c******n 的大作中提到】
: 太变态了。 如果下面有十层complete binary tree, 那 node 5 跟1还算一列的么?
h****3
发帖数: 89
7
多谢楼组分享,自己写了一个java版本的
public static void printVertical(TreeNode root){
HashMap> map = new HashMap Integer>>();
printVerticalHelper(root,0,map);
SortedSet keys = new TreeSet(map.keySet());
for(int key:keys){
List temp = map.get(key);
for(int i=0;i System.out.print(temp.get(i)+" ");
}
System.out.println();
}
}
public static void printVerticalHelper(TreeNode root, int pos,HashMap<
Integer,List> map){
List item;
if(!map.containsKey(pos)){
item = new ArrayList();
}else{
item = map.get(pos);
}
item.add(root.val);
map.put(pos, item);
if(root.left!=null)
printVerticalHelper(root.left,pos-1,map);
if(root.right!=null)
printVerticalHelper(root.right,pos+1,map);
}
1 (共1页)
进入JobHunting版参与讨论
相关主题
LRU cache 超时A家新鲜面经--都是经典题
Binary Tree Level Order Traversal为什么老通不过过不了leetcode Zigzag Level Order Traversal
非死不可电面出了新花样又有leetcode题目来请教了
怎么找一个数组里面,出现次数是偶数的数?请教LeetCode的3Sum
question about Leetcode #113 LeetCode – Path Sum II (Java)LeetCode 的 4 sum 问题 如何用hash table做呢?
问个Java的HashSet.contains的问题关于Hash_map
求点评:电话面试(今天第二天没有消息回复,感觉可能挂了)path sum II OJ 超时
leetcode的3sum的运行时间问题4sum o(n^2)超时
相关话题的讨论汇总
话题: integer话题: list话题: pos话题: hashmap