leetcode伪代码-shuffle-string:随机串

时间:2024-07-20 13:44:39
【文件属性】:

文件名称:leetcode伪代码-shuffle-string:随机串

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-20 13:44:39

系统开源

leetcode伪代码shuffle-string 题目解读: 题目来源: 原文: Given a string s and an integer array indices of the same length. The string s will be shuffled such that the character at the ith position moves to indices[i] in the shuffled string. Return the shuffled string. 解读: 给定一个字串s 还有一个正整数阵列indice 跟s 的长度相同 其中每个indice 中的元素代表s对应位置的字元的顺序 举例来说: s = "acb" ,indice = [0, 2, 1] 则restoreString 变成"abc" 因为c 对应的位置为2 初步解法: 初步观察: 自己当初的作法: 因为array本身纪录着位置 因此可以透过 建立map[array[i]] = s[i] 接着就可以透过每个index的值来把原本的string还原 后来看别人的作法: 其实不


【文件预览】:
shuffle-string-master
----.gitignore(269B)
----restoreString_test.go(1KB)
----README.md(4KB)
----restoreString.go(193B)

网友评论