Skip to content
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

Closed
wants to merge 236 commits into from
Closed

Permutations #16

wants to merge 236 commits into from

Conversation

rihib
Copy link
Owner

@rihib rihib commented Aug 13, 2024

Permutationsを解きました。レビューをお願い致します。

問題:https://leetcode.com/problems/permutations/
言語:Go

パフォーマンス:
時間計算量: $O(n * n!)$ (各順列を生成するのは $O(n)$ で、全体で $n!$ 個の順列が生成される)
空間計算量: $O(n * n!)$ (各順列の長さは $n$ で、全体で $n!$ 個の順列が生成される)

スタックオーバーフローの可能性:
permuteBacktrackingRecursion関数のスタックの最悪の深さは $O(n)$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

Copy link

@fhiyo fhiyo left a 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 {
Copy link

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
}
...

の方が読みやすい気が個人的にはしました。

Comment on lines +58 to +61
newInUse := make(map[int]struct{})
for k, v := range current.inUse {
newInUse[k] = v
}
Copy link

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

Copy link
Owner Author

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
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Next Permutationでも指摘されたがiの使用範囲が広いのでもっとわかりやすい変数名をつけたい

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants