【leetcode】面试题 08.08. 有重复字符串的排列组合

一、题目

        有重复字符串的排列组合。编写一种方法,计算某字符串的所有排列组合。

【leetcode】面试题 08.08. 有重复字符串的排列组合_第1张图片

二、解题思路

        与面试题08.07 无重复字符串排列组合思想类似http://t.csdn.cn/6Kul2,只需要将list换成set去重就可以了。

三、代码

class Solution {
   Set set=new HashSet();
	public String[] permutation(String S) {
		int len=S.length();
		fun(S.toCharArray(),0, new StringBuffer(),new boolean[len]);
		return set.toArray(new String[set.size()]);
	}
	
	public void fun(char[] arr,int idx,StringBuffer buf,boolean[] visited) {
		if(buf.length()==arr.length)  {
			set.add(new String(buf.toString()));
			return;
		}
		for(int i=0;i

四、运行结果

【leetcode】面试题 08.08. 有重复字符串的排列组合_第2张图片

你可能感兴趣的:(Leetcode刷题笔记,#,字符串,面试,java,算法,数据结构,leetcode)