Reverse a singly linked list.
12
Input: 1->2->3->4->5->NULLOutput: 5->4->3->2->1->NULL
数组(Array)是一种线性表数据结构。它用一组连续的内存空间,来存储一组具有相同类型的数据。
F(n) = F(n-1) + F(n-2)
sanwanliu
Posts
44
Categories
5
Tags
18
算法
Update your browser to view this website correctly. Update my browser now
×