码迷,mamicode.com
首页 > 其他好文 > 详细

CC150 8.4

时间:2014-12-01 16:14:11      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:interview

8.4 Write a method to compute all permutations of a string.

This is a very similar question to CC8.3

	static Collection<String> permutations(String s)
	{
		if (s == null || s.isEmpty())
			return Collections.emptyList();
		
		if (s.length() == 1)
			return Collections.singletonList(s);
		
		Set<String> toReturn = new HashSet<>();
		String firstChar = s.substring(0, 1);
		
		String otherChars = s.substring(1, s.length());
		Collection<String> otherResults = permutations(otherChars);
		
		for (String r : otherResults)
		{
			Set<String> insertCResults = insertAllPos(firstChar, r);
			toReturn.addAll(insertCResults);
		}
		
		return toReturn;
	}
	
	private static Set<String> insertAllPos(String c, String toInsert)
	{
		Set<String> toReturn = new HashSet<>();
		for (int i = 0 ; i <= toInsert.length() ; i ++)
		{
			String s = "";
			if (i > 0)
			{
				s += toInsert.substring(0, i);
			}
			s += c;
			if (i <= toInsert.length())
			{
				s += toInsert.substring(i, toInsert.length());
			}
			toReturn.add(s);
		}
		return toReturn;
	}


CC150 8.4

标签:interview

原文地址:http://7371901.blog.51cto.com/7361901/1585032

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!