0
点赞
收藏
分享

微信扫一扫

springCloudAlibaba之分布式网关组件---gateway

幺幺零 2024-06-19 阅读 29

题目:

题解:

int* preorderTraversal(struct TreeNode* root, int* returnSize) {
int* res = malloc(sizeof(int) * 2000);
*returnSize = 0;
if (root == NULL) {
return res;
}

struct TreeNode *p1 = root, *p2 = NULL;

while (p1 != NULL) {
p2 = p1->left;
if (p2 != NULL) {
while (p2->right != NULL && p2->right != p1) {
p2 = p2->right;
}
if (p2->right == NULL) {
res[(*returnSize)++] = p1->val;
p2->right = p1;
p1 = p1->left;
continue;
} else {
p2->right = NULL;
}
} else {
res[(*returnSize)++] = p1->val;
}
p1 = p1->right;
}
return res;
}
举报

相关推荐

0 条评论