歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

按層遍歷二叉樹

1、二叉樹定義

typedef struct BTreeNodeElement_t_ {
    void *data;
} BTreeNodeElement_t;

typedef struct BTreeNode_t_ {
    BTreeNodeElement_t *m_pElemt;
    struct BTreeNode_t_    *m_pLeft;
    struct BTreeNode_t_    *m_pRight;
} BTreeNode_t;

2、按層遍歷二叉樹

第一步:需要借助隊列,首先將根節點pRoot入隊;

第二步:當隊列不空時,獲得隊首元素並出隊,賦給pRoot,執行第三步;

第三步:如果pRoot左節點存在,則入隊;如果pRoot右節點存在,則入隊;執行第二步。

void  LevelTraverse( BTreeNode_t *pRoot){
    if( pRoot == NULL )
        return ;

    queue <BTreeNode_t *>  que;
    que.push( pRoot);

    while( !que.empty() ){
        pRoot = que.front();
        que.pop();
        Visit( pRoot);

        if( pRoot->m_pLeft != NULL )
            que.push( pRoot->m_pLeft );
        if( pRoot->m_pRight != NULL )
            que.push( pRoot->m_pRight);
    }

    return ;
}

二叉樹的常見問題及其解決程序 http://www.linuxidc.com/Linux/2013-04/83661.htm

【遞歸】二叉樹的先序建立及遍歷 http://www.linuxidc.com/Linux/2012-12/75608.htm

在JAVA中實現的二叉樹結構 http://www.linuxidc.com/Linux/2008-12/17690.htm

【非遞歸】二叉樹的建立及遍歷 http://www.linuxidc.com/Linux/2012-12/75607.htm

二叉樹遞歸實現與二重指針 http://www.linuxidc.com/Linux/2013-07/87373.htm

二叉樹先序中序非遞歸算法 http://www.linuxidc.com/Linux/2014-06/102935.htm

輕松搞定面試中的二叉樹題目 http://www.linuxidc.com/linux/2014-07/104857.htm

Copyright © Linux教程網 All Rights Reserved