leetcode/include/ListNode.h
2024-09-08 14:39:20 +08:00

11 lines
122 B
C

#ifndef LINKNODE_H
#define LINKNODE_H
struct ListNode
{
int val;
struct ListNode *next;
};
#endif // LINKNODE_H