LeetCode Reconstruct Itinerary

Posted Dylan_Java_NYC

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Reconstruct Itinerary相关的知识,希望对你有一定的参考价值。

原题链接在这里:https://leetcode.com/problems/reconstruct-itinerary/

题目:

Given a list of airline tickets represented by pairs of departure and arrival airports [from, to], reconstruct the itinerary in order. All of the tickets belong to a man who departs from JFK. Thus, the itinerary must begin with JFK.

Note:

  1. 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"].
  2. All airports are represented by three capital letters (IATA code).
  3. You may assume all tickets form at least one valid itinerary. 

Example 1:
tickets = [["MUC", "LHR"], ["JFK", "MUC"], ["SFO", "SJC"], ["LHR", "SFO"]]
Return ["JFK", "MUC", "LHR", "SFO", "SJC"].

Example 2:
tickets = [["JFK","SFO"],["JFK","ATL"],["SFO","ATL"],["ATL","JFK"],["ATL","SFO"]]
Return ["JFK","ATL","JFK","SFO","ATL","SFO"].
Another possible reconstruction is ["JFK","SFO","ATL","JFK","ATL","SFO"]. But it is larger in lexical order.

题解:

把这些ticket当成edge构建directed graph. 为了保证字母顺序,用了PriorityQueue. 然后做dfs.

Time Complexity: O(n+e). Space: O(n+e).

AC Java:

 1 public class Solution {
 2     Map<String, PriorityQueue<String>> graph = new HashMap<String, PriorityQueue<String>>();
 3     public List<String> findItinerary(String[][] tickets) {
 4         List<String> res = new LinkedList<String>();
 5         if(tickets == null || tickets.length == 0 || tickets[0].length == 0){
 6             return res;
 7         }
 8         
 9         for(String [] edge : tickets){
10             if(!graph.containsKey(edge[0])){
11                 graph.put(edge[0], new PriorityQueue<String>());
12             }
13             graph.get(edge[0]).add(edge[1]);
14         }
15         
16         dfs("JFK", res);
17         return res;
18     }
19     
20     private void dfs(String s, List<String> res){
21         while(graph.containsKey(s) && !graph.get(s).isEmpty()){
22             dfs(graph.get(s).poll(), res);
23         }
24         res.add(0, s);
25     }
26 }

 

以上是关于LeetCode Reconstruct Itinerary的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode: Reconstruct Itinerary

[LeetCode] Reconstruct Itinerary 重建行程单

[LeetCode] Reconstruct Itinerary

Leetcode 332: Reconstruct Itinerary

[LeetCode] 332. Reconstruct Itinerary

[LeetCode] 332. Reconstruct Itinerary Java