5. An NCTU linked list with order m is a variation of the linked list satisfying the following constraints:●Each node is able to store at most m integers.
●The integers within one node are in ascending order.
●Each integer in an NCTU linked list is distinct.
●If there is a path from node p to node q, the integers stored in node p are smaller than the integers stored in node q.
We use the following example to show how we implement an NCTU linked list with order 3. Each node of NCTU linked list is implemented by struct node, where (1) num is used to indicate the number of integers within the node, (2) data[0], data[1],..., data[num-1] are used to store such num integers and (3) next is used to point to the next node.
