17 lines
245 B
C
17 lines
245 B
C
//
|
|
// Created by xfj12 on 2025/3/25.
|
|
//
|
|
|
|
#ifndef LCP_67_H
|
|
#define LCP_67_H
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
#include <TreeNode.h>
|
|
struct TreeNode *expandBinaryTree(struct TreeNode *root);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // LCP_67_H
|