밑에서 위층으로 두 갈래 나무를 두루 다니다

1559 단어 leetcode
제목 원형:
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).
For example: Given binary tree  {3,9,20,#,#,15,7} ,
    3
   / \
  9  20
    /  \
   15   7

return its bottom-up level order traversal as:
[
  [15,7]
  [9,20],
  [3],
]

기본 사고방식:
밑으로 올라가서 창고에 썼어요.
	public ArrayList> levelOrderBottom(TreeNode root)
	{
		Stack> stack = new Stack>();
		ArrayList> list = new ArrayList>();
		ArrayList nodeSet = new ArrayList();
		ArrayList tmp ;
		ArrayList numSet ;
		if(root!=null)
		{
			nodeSet.add(root);
			while(nodeSet.size()>0)
			{
				tmp = new ArrayList();
				numSet = new ArrayList();
				// stack 
				for(TreeNode tn : nodeSet)
					numSet.add(tn.val);
				
				// stack 
				stack.push(numSet);
				
				// 
				for(TreeNode it : nodeSet)
				{
					if(it.left!=null)
						tmp.add(it.left);
					if(it.right!=null)
						tmp.add(it.right);
				}
				nodeSet = tmp;
			}
			
			// list 
			while(stack.size()>0)
			{
				ArrayList rs = stack.pop();
				list.add(rs);
			}
		}
		return list;
	}

좋은 웹페이지 즐겨찾기