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