우객망 검지offer-지그재그 순서로 두 갈래 나무 프린트
1636 단어 검지offer
제목 설명
함수는 지그재그로 두 갈래 트리를 인쇄합니다. 즉, 첫 번째 줄은 왼쪽에서 오른쪽으로, 두 번째 줄은 오른쪽에서 왼쪽으로, 세 번째 줄은 왼쪽에서 오른쪽으로, 다른 줄은 이와 같이 인쇄합니다.
/*
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
*/
class Solution {
public:
//
// , , ( ) ( )
vector > Print(TreeNode* pRoot) {
vector > ans;
stack sta1, sta2;
if (pRoot == nullptr)
return ans;
sta1.push(pRoot);
vector vec;
while (!sta1.empty())
{
vec.clear();
while (!sta1.empty())
{
if (sta1.top()->left != nullptr)
sta2.push(sta1.top()->left);
if (sta1.top()->right != nullptr)
sta2.push(sta1.top()->right);
vec.push_back(sta1.top()->val);
sta1.pop();
if (sta1.empty())
ans.push_back(vec);
}
vec.clear();
while (!sta2.empty())
{
if (sta2.top()->right != nullptr)
sta1.push(sta2.top()->right);
if (sta2.top()->left != nullptr)
sta1.push(sta2.top()->left);
vec.push_back(sta2.top()->val);
sta2.pop();
if (sta2.empty())
ans.push_back(vec);
}
}
return ans;
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
20200326 - 검지offer 면접문제 27: 두 갈래 나무의 거울이솔 위 안에 28문제의 답안이 있는데 어떻게 꼬치는지 모르겠다.간단해....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.