Untitled
unknown
plain_text
4 years ago
106 B
7
Indexable
#ifndef LISTNODE_H
#define LISTNODE_H
struct ListNode {
ItemType item;
ListNode* next;
};
#endifEditor is loading...
#ifndef LISTNODE_H
#define LISTNODE_H
struct ListNode {
ItemType item;
ListNode* next;
};
#endif