**顺序输出链表**
void printList(node* head) {
if (!head)
return;
cout << head->data << " ";
printList(head->next);
}
**逆序输出链表**
void printListByReverseOrder(node* head) {
if (!head)
return;
printListByReverseOrder(head->next);
cout << head->data << " ";
}
逆序输出链表(递归)---C++实现
最新推荐文章于 2024-09-09 09:54:16 发布