mirror of
https://git.wolves.top/wolves/leetcode.git
synced 2025-11-04 17:26:32 +08:00
20 lines
317 B
C
20 lines
317 B
C
//
|
|
// Created by 李洋 on 2024/2/25.
|
|
//
|
|
|
|
#ifndef LEETCODE_C_235_H
|
|
#define LEETCODE_C_235_H
|
|
|
|
struct TreeNode {
|
|
int val;
|
|
struct TreeNode *left;
|
|
struct TreeNode *right;
|
|
};
|
|
|
|
|
|
struct TreeNode* lowestCommonAncestor(struct TreeNode* root, struct TreeNode* p, struct TreeNode* q) {
|
|
|
|
}
|
|
|
|
#endif //LEETCODE_C_235_H
|