摘要: 题目描述:(链接)Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[... 阅读全文
posted @ 2015-11-22 17:21 skycore 阅读(147) 评论(0) 推荐(0)
摘要: 题目描述:(链接)Given a binary tree, return theinordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,... 阅读全文
posted @ 2015-11-22 16:55 skycore 阅读(199) 评论(0) 推荐(0)
摘要: 题目描述:(链接)Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1... 阅读全文
posted @ 2015-11-22 16:41 skycore 阅读(139) 评论(0) 推荐(0)
摘要: 题目解析:(链接)Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in t... 阅读全文
posted @ 2015-11-22 16:17 skycore 阅读(127) 评论(0) 推荐(0)