first commit
This commit is contained in:
10
include/ListNode.h
Normal file
10
include/ListNode.h
Normal file
@@ -0,0 +1,10 @@
|
||||
#ifndef LINKNODE_H
|
||||
#define LINKNODE_H
|
||||
|
||||
struct ListNode
|
||||
{
|
||||
int val;
|
||||
struct ListNode *next;
|
||||
};
|
||||
|
||||
#endif // LINKNODE_H
|
||||
Reference in New Issue
Block a user