CODE 64: Text Justification

Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified.

You should pack your words in a greedy approach; that is, pack as many words as you can in each line. Pad extra spaces ' ' when necessary so that each line has exactly L characters.

Extra spaces between words should be distributed as evenly as possible. If the number of spaces on a line do not divide evenly between words, the empty slots on the left will be assigned more spaces than the slots on the right.

For the last line of text, it should be left justified and no extra space is inserted between words.

For example,
words["This", "is", "an", "example", "of", "text", "justification."]
L16.

Return the formatted lines as:

[
   "This    is    an",
   "example  of text",
   "justification.  "
]

Note: Each word is guaranteed not to exceed L in length.

click to show corner cases.

Corner Cases:

  • A line other than the last line might contain only one word. What should you do in this case?
    In this case, that line should be left-justified.
	public ArrayList<String> fullJustify(String[] words, int L) {
		// Start typing your Java solution below
		// DO NOT write main() function
		if (null == words || words.length <= 0) {
			ArrayList<String> result = new ArrayList<String>();
			result.add("");
			return result;
		} else if (words.length == 1 && words[0].equals("") && L > 0) {
			ArrayList<String> result = new ArrayList<String>();
			StringBuilder sb = new StringBuilder();
			for (int i = 0; i < L; i++) {
				sb.append(" ");
			}
			result.add(sb.toString());
			return result;
		}
		ArrayList<String> result = new ArrayList<String>();
		int groupNumber = 0;
		int groupLength = 0;
		int startWord = 0;
		for (int i = 0; i < words.length; i++) {
			if (groupLength + words[i].length() <= L) {
				groupLength += words[i].length() + 1;
				groupNumber++;
			} else {
				StringBuilder sb = new StringBuilder();
				int[] spaceNumber = new int[groupNumber - 1];
				if (groupNumber == 1) {
					sb.append(words[startWord]);
					for (int m = 0; m < L - words[startWord].length(); m++)
						sb.append(" ");
				} else {
					if (groupLength - 1 == L) {
						for (int j = 0; j < groupNumber - 1; j++) {
							spaceNumber[j] = 1;
						}
					} else {
						for (int j = 0; j < groupNumber - 1; j++) {
							spaceNumber[j] = (L - (groupLength - groupNumber))
									/ (groupNumber - 1);
						}
						for (int j = 0; j < (L - (groupLength - groupNumber))
								% (groupNumber - 1); j++) {
							spaceNumber[j] += 1;
						}
					}
					for (int j = startWord; j < startWord + groupNumber; j++) {
						sb.append(words[j]);
						if (startWord + groupNumber - 1 != j) {
							for (int m = 0; m < spaceNumber[j - startWord]; m++)
								sb.append(" ");
						}
					}
				}
				result.add(sb.toString());

				groupNumber = 0;
				groupLength = 0;
				startWord = i;
				i--;
			}
		}
		if (groupNumber != 0) {
			StringBuilder sb = new StringBuilder();
			for (int j = startWord; j < startWord + groupNumber; j++) {
				sb.append(words[j]);
				if (startWord + groupNumber - 1 != j) {
					sb.append(" ");
				}
			}
			if (sb.length() < L) {
				for (int m = sb.length(); m < L; m++) {
					sb.append(" ");
				}
			}
			result.add(sb.toString());
		}
		return result;
	}


1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 、下4载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 、下4载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合;、 4下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值