검지 Offer-JZ60 - 두 갈래 나무를 여러 줄로 프린트합니다.
5949 단어 검지offer
제목 설명
위에서 아래로 층별로 두 갈래 트리를 인쇄하고 같은 층의 결점은 왼쪽에서 오른쪽으로 출력합니다.층마다 줄을 출력합니다.
문제 풀이 사고방식
59번 다 할 줄 알았는데 60번 못 할 리가 없어!(*^▽^*)
코드 구현 /*
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
*/
class Solution {
public:
vector<vector<int> > Print(TreeNode* pRoot) {
vector<vector<int>> printContent;
if(pRoot == NULL) return printContent;
queue<TreeNode *> q;
q.push(pRoot);
while(!q.empty()){
vector<int> v;
int curQueueSize = q.size();
for(int i = 0; i < curQueueSize; i++){
TreeNode *queueFrontElem = q.front();
v.push_back(queueFrontElem->val);
q.pop();
if(queueFrontElem->left) q.push(queueFrontElem->left);
if(queueFrontElem->right) q.push(queueFrontElem->right);
}
printContent.push_back(v);
}
return printContent;
}
};
실행 결과
실행 시간: 5ms 사용 메모리: 504k
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
20200326 - 검지offer 면접문제 27: 두 갈래 나무의 거울
이솔
위 안에 28문제의 답안이 있는데 어떻게 꼬치는지 모르겠다.간단해....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
59번 다 할 줄 알았는데 60번 못 할 리가 없어!(*^▽^*)
코드 구현 /*
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
*/
class Solution {
public:
vector<vector<int> > Print(TreeNode* pRoot) {
vector<vector<int>> printContent;
if(pRoot == NULL) return printContent;
queue<TreeNode *> q;
q.push(pRoot);
while(!q.empty()){
vector<int> v;
int curQueueSize = q.size();
for(int i = 0; i < curQueueSize; i++){
TreeNode *queueFrontElem = q.front();
v.push_back(queueFrontElem->val);
q.pop();
if(queueFrontElem->left) q.push(queueFrontElem->left);
if(queueFrontElem->right) q.push(queueFrontElem->right);
}
printContent.push_back(v);
}
return printContent;
}
};
실행 결과
실행 시간: 5ms 사용 메모리: 504k
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
20200326 - 검지offer 면접문제 27: 두 갈래 나무의 거울
이솔
위 안에 28문제의 답안이 있는데 어떻게 꼬치는지 모르겠다.간단해....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
/*
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
*/
class Solution {
public:
vector<vector<int> > Print(TreeNode* pRoot) {
vector<vector<int>> printContent;
if(pRoot == NULL) return printContent;
queue<TreeNode *> q;
q.push(pRoot);
while(!q.empty()){
vector<int> v;
int curQueueSize = q.size();
for(int i = 0; i < curQueueSize; i++){
TreeNode *queueFrontElem = q.front();
v.push_back(queueFrontElem->val);
q.pop();
if(queueFrontElem->left) q.push(queueFrontElem->left);
if(queueFrontElem->right) q.push(queueFrontElem->right);
}
printContent.push_back(v);
}
return printContent;
}
};
실행 시간: 5ms 사용 메모리: 504k
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
20200326 - 검지offer 면접문제 27: 두 갈래 나무의 거울이솔 위 안에 28문제의 답안이 있는데 어떻게 꼬치는지 모르겠다.간단해....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.