leetcode 206. Reverse Linked List

Reverse a singly linked list.

1
2
Input: 1->2->3->4->5->NULL
Output: 5->4->3->2->1->NULL

数组和链表

数组

数组(Array)是一种线性表数据结构。它用一组连续的内存空间,来存储一组具有相同类型的数据。


Fibonacci

斐波那契递归

F(n) = F(n-1) + F(n-2)


算法复杂度

时间复杂度


Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×