Adt lab/linked lists
รุ่นแก้ไขเมื่อ 22:43, 17 กันยายน 2558 โดย Jittat (คุย | มีส่วนร่วม)
- This is part of adt lab
List nodes
typedef
In C++, you can simply declare a new type based on known types using typedef.
typedef int valueType; ... valueType x = 10;
We will declare new valueType so that our linked list code works fairly well with any types. We will eventually use template to make generic linked list.