1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/// 剑指 Offer 24. 反转链表
/// <https://leetcode.cn/problems/fan-zhuan-lian-biao-lcof/>

pub struct Solution;

// Definition for singly-linked list.
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct ListNode {
	pub val: i32,
	pub next: Option<Box<ListNode>>,
}

#[allow(unused)]
impl ListNode {
	#[inline]
	fn new(val: i32) -> Self {
		ListNode { next: None, val }
	}
}

#[allow(unused)]
impl Solution {
	pub fn reverse_list(head: Option<Box<ListNode>>) -> Option<Box<ListNode>> {
		let mut head = head;
		let mut pre = None;
		while let Some(mut node) = head {
			head = node.next.take();
			node.next = pre;
			pre = Some(node);
		}
		pre
	}
}

#[cfg(test)]
mod tests {
	use super::*;

	#[test]
	fn test() {
		let a = Some(Box::new(ListNode {
			val: 1,
			next: Some(Box::new(ListNode { val: 2, next: None })),
		}));
		let b = Some(Box::new(ListNode {
			val: 2,
			next: Some(Box::new(ListNode { val: 1, next: None })),
		}));
		assert_eq!(Solution::reverse_list(a), b);
	}
}