程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> leetocde_Binary Tree Right Side View

leetocde_Binary Tree Right Side View

編輯:C++入門知識

leetocde_Binary Tree Right Side View


描述:

 

Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

For example:
Given the following binary tree,

   1            <---
 /   \
2     3         <---
 \     \
  5     4       <---

 

You should return [1, 3, 4].

思路:

按層序遍歷的思路,每次只保存該層的最後一個元素即可。

代碼:

 

public List rightSideView(TreeNode root) {
        ListlistReturn=new ArrayList();
        if(root==null)
        	return listReturn;
        Listlist=new ArrayList();
        Listtemp=new ArrayList();
        list.add(root);
        TreeNode node=null;
        listReturn.add(root.val);
        while(list.size()!=0)
        {
        	for(int i=0;i0)
        		listReturn.add(temp.get(temp.size()-1).val);
        	list.clear();
            list=temp;
        	temp=new ArrayList();
        }
	    return listReturn;
   }

 

結果:

\

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved