-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Permutations #16
Permutations #16
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
良いと思います!
return | ||
} | ||
for _, n := range nums { | ||
if _, ok := inUse[n]; !ok { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここも非再帰の方法で書いているように
if _, ok := inUse[n]; ok {
continue
}
...
の方が読みやすい気が個人的にはしました。
newInUse := make(map[int]struct{}) | ||
for k, v := range current.inUse { | ||
newInUse[k] = v | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
newInUse := maps.Clone(current.inUse)
と書けるらしいです。 https://pkg.go.dev/[email protected]#Clone
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
知りませんでした、ありがとうございます!
var permutations [][]int | ||
for { | ||
permutations = append(permutations, append([]int{}, nums...)) | ||
i := len(nums) - 2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Next Permutationでも指摘されたがiの使用範囲が広いのでもっとわかりやすい変数名をつけたい
Permutationsを解きました。レビューをお願い致します。
問題:https://leetcode.com/problems/permutations/
言語:Go
パフォーマンス:$O(n * n!)$ (各順列を生成するのは $O(n)$ で、全体で $n!$ 個の順列が生成される)$O(n * n!)$ (各順列の長さは $n$ で、全体で $n!$ 個の順列が生成される)
時間計算量:
空間計算量:
スタックオーバーフローの可能性:
$O(n)$ 。
permuteBacktrackingRecursion
関数のスタックの最悪の深さはgenerate
関数は引数やローカル変数を持たないので、戻りアドレスやFPが保存されるとしてスタックフレームサイズは20Bほどになり、スタックの深さは最大でlen(nums)であり、今回の制約ではlen(nums)<=6であることから、使用するスタックサイズは120Bほどなので、スタックオーバーフローの可能性はないと言える。辞書順に順列を生成する:
https://en.wikipedia.org/wiki/Permutation#Generation_in_lexicographic_order
https://en.cppreference.com/w/cpp/algorithm/next_permutation
https://docs.python.org/3/library/itertools.html#itertools.permutations
https://github.com/python/cpython/blob/bc264eac3ad14dab748e33b3d714c2674872791f/Modules/itertoolsmodule.c#L2603
すでに解いた方々:
hayashi-ay/leetcode#5
hayashi-ay/leetcode#57
shining-ai/leetcode#50
SuperHotDogCat/coding-interview#12
goto-untrapped/Arai60#16
Mike0121/LeetCode#14
nittoco/leetcode#21
fhiyo/leetcode#50