Untitled

Anonymous
plain_text
10/01/2021 7:38 PM
144 B
16
Indexable
#ifndef LISTNODE_H
#define LISTNODE_H

struct ListNode {
    ItemType item;
    ListNode* next;
};

#endif
Editor is loading...