面試題 二叉樹中和為某一值的路徑

2021-08-15 06:22:52 字數 941 閱讀 6865

輸入一顆二叉樹和乙個整數,列印出二叉樹中節點值和為輸入整數的所有路徑。從數的根節點開始從下一直到葉節點所經過的節點形成一條路徑。二叉樹節點定義如下:

struct binarytreenode

int m_nvalue;

binarytreenode* m_pleft;

binarytreenode* m_pright;

答案:void findpath(binarytreenode* proot,int expectedsum)

if(proot==nullptr)

return;

std::vectorpath;

int currentsum=0;

findpath(proot,expectedsum,path,currentsum);

void findpath

binarytreenode* proot;

int expectedsum,

std::vector& path,

int currentsum

currentsum+=proot->m_nvalue;

path.push_back(proot->m_nvalue);

bool isleaf=proot->m_pleft==nullptr&&proot->m_pright==nullptr;

if(currentsum==expectedsum&&isleaf)

if(proot->m_pleft!=nullptr)

findpath(proot->m_pleft,expectedsum,path,currentsum);

if(proot->m_pright!=nullptr)

findpath(proot->m_pright,expectedsum,path,currentsum);

path.pop_back();

面試題23 二叉樹中和為某一值的路徑

以先序的方式構建二叉樹,輸入 表示結點為空 void createbinarytree binarytreenode proot else void printinorder binarytreenode proot int tmain int argc,tchar argv 說明 用vector模...

面試題25 二叉樹中和為某一值的路徑

輸入一棵二叉樹和乙個整數,列印出二叉樹中結點值的和為輸入整數的所有路徑。從根的根結點開始往下一直到葉節點 所經過的結點形成一條路徑。include include using namespace std 二叉樹結點定義 struct binarytreenode 建立二叉樹結點 binarytree...

面試題25 二叉樹中和為某一值的路徑

以先序的方式構建二叉樹,輸入 表示結點為空 void createbinarytree binarytreenode proot else void printinorder binarytreenode proot int tmain intargc,tchar argv 說明 用vector模擬...