-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathLengthOfLastWord.java
84 lines (77 loc) · 2.8 KB
/
LengthOfLastWord.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.interviewbit.string_parsing;
import com.util.LogUtil;
/**
* https://www.interviewbit.com/problems/length-of-last-word/
* <p>
* Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
* <p>
* If the last word does not exist, return 0.
* <p>
* Note: A word is defined as a character sequence consists of non-space characters only.
* <p>
* Example:
* <p>
* Given s = "Hello World",
* <p>
* return 5 as length("World") = 5.
* <p>
* Please make sure you try to solve this problem without using library functions. Make sure you only traverse the string once.
*
* @author neeraj on 2019-08-01
* Copyright (c) 2019, data-structures.
* All rights reserved.
*/
@SuppressWarnings("DuplicatedCode")
public class LengthOfLastWord {
private final static String WHITESPACE = " ";
public static void main(String[] args) {
findLengthOfLastWord("Hello World"); // Should Answer 5
findLengthOfLastWord("Helloworld"); // Should Answer 10
findLengthOfLastWord(" "); // Should Answer 0
findLengthOfLastWord(" Hello World How are you"); // Should Answer 0
}
private static void findLengthOfLastWord(String input) {
LogUtil.logIt("Length of Last Word in " + input + " is " + lengthOfLastWord(input));
LogUtil.logIt("After Reversing input " + input + " word by word : " + reverseWords(input));
}
// DO NOT MODIFY THE LIST. IT IS READ ONLY
public static int lengthOfLastWord(final String A) {
boolean alphabetPresent = false;
int length = 0;
// We will start from last character of the input and traverse upto the initial char
for (int i = A.length() - 1; i >= 0; i--) {
if (A.charAt(i) == ' ') {
if (alphabetPresent) {
break;
} else {
continue;
}
} else {
alphabetPresent = true;
length++;
}
}
return length;
}
public static String reverseWords(String A) {
StringBuffer reversedString = new StringBuffer();
boolean alphabetPresent = false;
int length = 0;
for (int i = A.length() - 1; i >= 0; i--) {
if (A.charAt(i) == ' ') {
if (alphabetPresent) {
reversedString.append(A.substring(i + 1, i + 1 + length)).append(WHITESPACE);
alphabetPresent = false;
length = 0;
}
} else {
alphabetPresent = true;
length++;
}
}
if (alphabetPresent) {
reversedString.append(A.substring(0, length));
}
return reversedString.toString();
}
}