摘要:遍歷路徑,找到所有可以到達終點節(jié)點的路徑就是結果。提示中說保證輸入為有向無環(huán)圖,所以我們可以認為節(jié)點間一定有著某種排列的順序,從頭到尾怎樣可以有最多的路徑呢,那就是在保證沒有環(huán)路的情況下,所有節(jié)點都盡可能多的連接著其他節(jié)點。
非常感謝你閱讀本文~
歡迎【?點贊】【?收藏】【?評論】~
放棄不難,但堅持一定很酷~
希望我們大家都能每天進步一點點~
本文由 二當家的白帽子:https://le-yi.blog.csdn.net/ 博客原創(chuàng)~
給定一個有 n
個節(jié)點的有向無環(huán)圖,用二維數組 graph
表示,請找到所有從 0
到 n-1
的路徑并輸出(不要求按順序)。
graph
的第 i
個數組中的單元都表示有向圖中 i
號節(jié)點所能到達的下一些結點(譯者注:有向圖是有方向的,即規(guī)定了 a→b 你就不能從 b→a ),若為空,就是沒有下一個節(jié)點了。
輸入: graph = [[1,2],[3],[3],[]] 輸出: [[0,1,3],[0,2,3]] 解釋: 有兩條路徑 0 -> 1 -> 3 和 0 -> 2 -> 3
輸入: graph = [[4,3,1],[3,2,4],[3],[4],[]] 輸出: [[0,4],[0,3,4],[0,1,3,4],[0,1,2,3,4],[0,1,4]]
輸入: graph = [[1],[]] 輸出: [[0,1]]
輸入: graph = [[1,2,3],[2],[3],[]] 輸出: [[0,1,2,3],[0,2,3],[0,3]]
輸入: graph = [[1,3],[2],[3],[]] 輸出: [[0,1,2,3],[0,3]]
無環(huán)圖
,要不然就沒那么簡單了。保證輸入為有向無環(huán)圖 (GAD)
,所以我們可以認為節(jié)點間一定有著某種排列的順序,從頭到尾怎樣可以有最多的路徑呢,那就是在保證沒有環(huán)路的情況下,所有節(jié)點都盡可能多的連接著其他節(jié)點。1 << n - 2
。class Solution { public List<List<Integer>> allPathsSourceTarget(int[][] graph) { List<List<Integer>> ans = new ArrayList<>(); Deque<Integer> stack = new ArrayDeque<>(); stack.offerLast(0); dfs(graph, stack, ans); return ans; } private void dfs(int[][] graph, Deque<Integer> stack, List<List<Integer>> ans) { if (stack.peekLast() == graph.length - 1) { ans.add(new ArrayList<>(stack)); return; } for (int to : graph[stack.peekLast()]) { stack.offerLast(to); dfs(graph, stack, ans); stack.pollLast(); } }}
void dfs(int **graph, int *graphColSize, int *returnSize, int **returnColumnSizes, int n, int *stack, int stackSize, int **ans) { int last = stack[stackSize - 1]; if (last == n) { int *row = malloc(sizeof(int) * stackSize); memcpy(row, stack, sizeof(int) * stackSize); ans[*returnSize] = row; (*returnColumnSizes)[(*returnSize)++] = stackSize; return; } for (int i = 0; i < graphColSize[last]; ++i) { int to = graph[last][i]; stack[stackSize] = to; dfs(graph, graphColSize, returnSize, returnColumnSizes, n, stack, stackSize + 1, ans); }}/** * Return an array of arrays of size *returnSize. * The sizes of the arrays are returned as *returnColumnSizes array. * Note: Both returned array and *columnSizes array must be malloced, assume caller calls free(). */int** allPathsSourceTarget(int** graph, int graphSize, int* graphColSize, int* returnSize, int** returnColumnSizes){ *returnSize = 0; *returnColumnSizes = malloc(sizeof(int) * (1 << graphSize - 2)); int **ans = malloc(sizeof(int *) * (1 << graphSize - 2)); int *stack = malloc(sizeof(int) * graphSize); stack[0] = 0; dfs(graph, graphColSize, returnSize, returnColumnSizes, graphSize - 1, stack, 1, ans); return ans;}
class Solution {private: void dfs(vector<vector<int>>& graph, vector<int>& stack, vector<vector<int>>& ans) { if (stack.back() == graph.size() - 1) { ans.push_back(stack); return; } for (auto& to : graph[stack.back()]) { stack.push_back(to); dfs(graph, stack, ans); stack.pop_back(); } }public: vector<vector<int>> allPathsSourceTarget(vector<vector<int>>& graph) { vector<vector<int>> ans; vector<int> stack; stack.push_back(0); dfs(graph, stack, ans); return ans; }};
class Solution: def allPathsSourceTarget(self, graph: List[List[int]]) -> List[List[int]]: ans = list() stack = list() def dfs(): last = stack[len(stack) - 1] if last == len(graph) - 1: ans.append(stack[:]) return for to in graph[last]: stack.append(to) dfs() stack.pop() stack.append(0) dfs() return ans
func allPathsSourceTarget(graph [][]int) (ans [][]int) { n := len(graph) - 1 stack := []int{0} var dfs func() dfs = func() { last := stack[len(stack)-1] if last == n { ans = append(ans, append([]int{}, stack...)) return } for _, to := range graph[last] { stack = append(stack, to) dfs() stack = stack[:len(stack)-1] } } dfs() return}
impl Solution { pub fn all_paths_source_target(graph: Vec<Vec<i32>>) -> Vec<Vec<i32>> { let mut ans: Vec<Vec<i32>> = Vec::new(); let mut stack: Vec<i32> = Vec::new(); stack.push(0); Solution::dfs(&graph, graph.len() as i32 - 1, &mut stack, &mut ans); ans } fn dfs(graph: &Vec<Vec<i32>>, n: i32, stack: &mut Vec<i32>, ans: &mut Vec<Vec<i32>>) { let last = stack[stack.len() - 1]; if last == n { ans.push(stack.clone()); return; } graph[last as usize].iter().for_each(|to| { stack.push(to.clone()); Solution::dfs(graph, n, stack, ans); stack.pop(); }); }}
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規(guī)行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/124501.html
摘要:耐得住寂寞,才能等得到花開慢慢積累自己的知識,不斷疊加,全面優(yōu)化,無論在哪個領域都可以有你的一席之地,即為有志者事竟成,破釜沉舟,百二秦關終屬楚也祝我們能向未來發(fā)展的開發(fā)者們苦心人天不負,臥薪嘗膽,三千越甲可吞吳。 我們今天來了聊一聊一個話題——全棧開發(fā) 作為一個程序員,不管是Java還是C...
摘要:題目給定一個可能有重復數字的整數數組和一個目標數,找出中所有可以使數字和為的組合。中的每個數字在每個組合中只能使用一次,解集不能包含重復的組合。示例輸入輸出示例輸入輸出提示注意本題與主站題相同答案回溯法排序后去重 ...
摘要:假設壓入棧的所有數字均不相等。注意這兩個序列的長度是相等的思路借助一個輔助棧來存儲數據。當所有數據入棧完成,如果出棧順序正確,那么輔助棧應該為空。若存在,左右子樹,遞歸檢測左右子樹是否復合規(guī)范。 1.包含min函數的棧 定義棧的數據結構,請在該類型中實現一個能夠得到棧中所含最小元素的min函數(時間復雜度應為O(1))。 思路 1.定義兩個棧,一個棧用于存儲數據,另一個棧用于存儲每次數...
閱讀 3223·2021-11-23 09:51
閱讀 1030·2021-08-05 09:58
閱讀 663·2019-08-29 16:05
閱讀 971·2019-08-28 18:17
閱讀 3028·2019-08-26 14:06
閱讀 2721·2019-08-26 12:20
閱讀 2154·2019-08-26 12:18
閱讀 3063·2019-08-26 11:56