first commit

This commit is contained in:
2024-09-08 14:39:20 +08:00
commit a1127e008f
34 changed files with 1403 additions and 0 deletions

10
include/ListNode.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef LINKNODE_H
#define LINKNODE_H
struct ListNode
{
int val;
struct ListNode *next;
};
#endif // LINKNODE_H