### 在链表章节,如果没有特殊说明,则默认链表为单向不循环链表,其结构体声明如下: ``` C++ struct SList { int m_data; SList *m_next; }; ```