摘要: Problem Descriptionhttp://oj.leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/Basic idea is to get every nodes in the current level by iterating nodes of the previous level, then to iterate all nodes in current level to connect them with pointer "next". 1 /** 2 * Defini 阅读全文
posted @ 2013-10-11 15:03 假日笛声 阅读(227) 评论(0) 推荐(0) 编辑