Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 515 Bytes

009.md

File metadata and controls

36 lines (21 loc) · 515 Bytes

沁原每日面经解读 009

输出排列 LinkedIn-全职-电面-社招

题目


有一个元素各不相同的数组,输出它的所有排列

例如,[2,3,5]

输出:
[
  [2,3,5],
  [2,5,3],
  [3,2,5],
  [3,5,2],
  [5,2,3],
  [5,3,2]
]


思路

  • 遍历模型:枚举遍历每个位置的可行