상위 150개 인터뷰쉬움

목록 재정렬

'재주문 목록' 문제에 대한 자세한 가이드 및 Python 구현입니다.

문제 설명

쉬움

단일 연결 리스트의 헤드가 제공됩니다. 목록은 다음과 같이 나타낼 수 있습니다.

L0 → L1 → … → Ln-1 → Ln

목록을 다음 형식으로 재정렬합니다.

L0 → Ln → L1 → Ln-1 → L2 → Ln-2 → …

목록 노드의 값은 수정할 수 없습니다. 노드 자체만 변경할 수 있습니다.

연결된 목록은 Python 목록으로 표시됩니다. 재정렬된 목록을 반환하는 reorderList(head: list) -> list 함수를 구현하세요.

제약
  • The number of nodes in the list is in the range [1, 50000]
  • 1 <= Node.val <= 1000

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

The list 1->2->3->4 is reordered to 1->4->2->3.

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

The list 1->2->3->4->5 is reordered to 1->5->2->4->3.

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 리소스

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