상위 150개 인터뷰쉬움

역방향 연결리스트

'역방향 연결 목록' 문제에 대한 자세한 가이드 및 Python 구현입니다.

문제 설명

쉬움

단일 연결 리스트의 헤드가 주어지면 리스트를 반전하고 반전된 리스트를 반환합니다.

연결된 목록은 값 목록으로 표시됩니다. 연결된 목록을 나타내는 목록을 가져와서 역방향 목록을 반환하는 reverseList(head: list) -> list 함수를 구현하세요.

제약
  • The number of nodes in the list is in the range [0, 5000]
  • -5000 <= Node.val <= 5000

Example 1
Input
[1,2,3,4,5]
Output
[5,4,3,2,1]
Explanation

The original list is 1->2->3->4->5. After reversing, it becomes 5->4->3->2->1.

Example 2
Input
[1,2]
Output
[2,1]
Explanation

The original list is 1->2. After reversing, it becomes 2->1.

Example 3
Input
[]
Output
[]
Explanation

An empty list reversed is still an empty list.

Need a Hint?
세트나 힙과 같은 연결 목록 관련 데이터 구조를 사용하는 것을 고려해보세요.
Edge Cases to Watch
  • 빈 입력 구조
  • 단일 요소 입력
  • 큰 수치 범위

해결할 준비가 되셨나요?

Open the problem in PyRun's browser-based Python editor. Your code runs fully offline — no server required.

편집기에서 열기
Found this breakdown helpful?

PyRun is built and maintained by an independent solo developer. If this helped your interview prep, consider buying a coffee!

Buy me a coffee

권장 Python 리소스

관련 대화형 튜토리얼, 치트 시트, 코드 비교를 통해 지식을 확장하세요.