由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一道题目
相关主题
问一个经典题目请教 permute vector of vectors 如何实现,谢谢大家
请教G的一道题,觉得有点难……问一个题目
问一道题目谁能贴一下求nth permutation 和已知permutation 求rank的code
字符串中查找包含给定字符的最短子串今天才整明白Permutation的最优解!?
Permutation leetcode-谁能帮我写写这道题? print all permutations of a string
返回字符串所有的 combination请教 怎样存下这个string
Exposed上一道string permutation的题T家电面面经并且不解为何被秒拒
Given a string, find all its permutations without any repetition?求问个G家面试题
相关话题的讨论汇总
话题: arr话题: start话题: abc话题: string话题: result
进入JobHunting版参与讨论
1 (共1页)
g***j
发帖数: 1275
1
给定一个字符串,找出所有的可能的字符串,大小不限。
比如给定
aBc
输出
abc
abC
aBc
aBC
就是同样的字母顺序,如果都转换成小写后字符串是一样的。如何高效的输出?
谢谢了
r****y
发帖数: 26819
2
做一个等长的01的permutation

【在 g***j 的大作中提到】
: 给定一个字符串,找出所有的可能的字符串,大小不限。
: 比如给定
: aBc
: 输出
: abc
: abC
: aBc
: aBC
: 就是同样的字母顺序,如果都转换成小写后字符串是一样的。如何高效的输出?
: 谢谢了

g***j
发帖数: 1275
3
如何高效的做呢?

【在 r****y 的大作中提到】
: 做一个等长的01的permutation
l*****a
发帖数: 14598
4
public void get(char[] arr,int start,List result) {
if(start==arr.length) {
result.add(new String(arr));
return;
}

get(arr,start+1,result);
if(arr[start]>='a'&&arr[start]<='z') {
arr[start]+='A'-'a';
} else {
arr[start]+='a'-'A';
}
get(arr,start+1,result);
}

【在 g***j 的大作中提到】
: 如何高效的做呢?
r****y
发帖数: 26819
5
permutation有标准的算法。比如princeton的java版本。

【在 g***j 的大作中提到】
: 如何高效的做呢?
o***g
发帖数: 2784
6
for (int i = 0 ;i< (1< 就是从00000...000到11111...111

【在 g***j 的大作中提到】
: 如何高效的做呢?
g***j
发帖数: 1275
7
这样每个i都要查一遍bit 是0还是1吧
这样复杂度是 2^len * len



【在 o***g 的大作中提到】
: for (int i = 0 ;i< (1<: 就是从00000...000到11111...111
o***g
发帖数: 2784
8
楼上的程序不是挺好的

【在 g***j 的大作中提到】
: 这样每个i都要查一遍bit 是0还是1吧
: 这样复杂度是 2^len * len
:
:

1 (共1页)
进入JobHunting版参与讨论
相关主题
求问个G家面试题Permutation leetcode-
String permunation question (CS)返回字符串所有的 combination
HackerRank find string..Exposed上一道string permutation的题
String list如何排序Given a string, find all its permutations without any repetition?
问一个经典题目请教 permute vector of vectors 如何实现,谢谢大家
请教G的一道题,觉得有点难……问一个题目
问一道题目谁能贴一下求nth permutation 和已知permutation 求rank的code
字符串中查找包含给定字符的最短子串今天才整明白Permutation的最优解!?
相关话题的讨论汇总
话题: arr话题: start话题: abc话题: string话题: result