332. Reconstruct Itinerary
Description
You are given a list of airline tickets
where tickets[i] = [from<sub>i</sub>, to<sub>i</sub>]
represent the departure and the arrival airports of one flight. Reconstruct the itinerary in order and return it.
All of the tickets belong to a man who departs from "JFK"
, thus, the itinerary must begin with "JFK"
. If there are multiple valid itineraries, you should return the itinerary that has the smallest lexical order when read as a single string.
- For example, the itinerary
["JFK", "LGA"]
has a smaller lexical order than["JFK", "LGB"]
.
You may assume all tickets form at least one valid itinerary. You must use all the tickets once and only once.
Example 1:
![](https://assets.leetcode.com/uploads/2021/03/14/itinerary1-graph.jpg)
1 | Input: tickets = [["MUC","LHR"],["JFK","MUC"],["SFO","SJC"],["LHR","SFO"]] |
Example 2:
![](https://assets.leetcode.com/uploads/2021/03/14/itinerary2-graph.jpg)
1 | Input: tickets = [["JFK","SFO"],["JFK","ATL"],["SFO","ATL"],["ATL","JFK"],["ATL","SFO"]] |
Constraints:
1 <= tickets.length <= 300
tickets[i].length == 2
- fromi.length == 3
- toi.length == 3
- fromi and toi consist of uppercase English letters.
- fromi != toi
Hints/Notes
- 2025/01/06
- backtracking
- No solution from 0x3F
Solution
Language: C++
1 | class Solution { |