반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 해시를 사용한 집합과 맵
- 문자열
- 연결리스트 중복제거
- LeetCode Remove Duplicates from Sorted List in c
- 스택
- KMP알고리즘
- 연결리스트 정렬
- 시뮬레이션
- 정렬
- 다이나믹 프로그래밍
- 큰 수 연산
- 큐
- 프로그래머스
- 실패함수
- 재귀
- 유클리드 호제법
- 정수론
- 문자열제곱
- 임의 정밀도 / 큰 수 연산
- 구현
- 브루트포스 알고리즘
- Queue
- LeetCode 83번
- 수학
- 조합론
- 이분 탐색
- 별 찍기
- LeetCode 83 c언어
- 사칙연산
- 자료 구조
Archives
- Today
- Total
hahn
[LeetCode - C] 58. Length of Last Word 본문
728x90
반응형
Given a string s consisting of some words separated by some number of spaces, return the length of the last word in the string.
A word is a maximal substring consisting of non-space characters only.
Example 1:
Input: s = "Hello World"
Output: 5
Explanation: The last word is "World" with length 5.
Example 2:
Input: s = " fly me to the moon "
Output: 4
Explanation: The last word is "moon" with length 4.
Example 3:
Input: s = "luffy is still joyboy"
Output: 6
Explanation: The last word is "joyboy" with length 6.
Constraints:
- 1 <= s.length <= 104
- s consists of only English letters and spaces ' '.
- There will be at least one word in s.
Solution 1
string 끝까지 idx 이동시키고
뒤에 공백이 있다면 idx--
이후 공백을 만나거나 idx가 -1이 될 때 까지
idx--함과 동시에 len++
이후 len return
int lengthOfLastWord(char *s)
{
int len;
int idx;
idx = 0;
len = 0;
while (s[idx])
idx++;
idx--;
while (s[idx] == ' ')
idx--;
while (idx != -1 && s[idx] != ' ')
{
idx--;
len++;
}
return (len);
}
728x90
반응형
'코딩테스트 연습 > LeetCode(C - Easy)' 카테고리의 다른 글
[LeetCode - C] 67. Add Binary (0) | 2022.04.18 |
---|---|
[LeetCode - C] 66. Plus One (0) | 2022.04.16 |
[LeetCode - C] 53. Maximum Subarray (0) | 2022.04.12 |
[LeetCode - C] 35. Search Insert Position (0) | 2022.04.06 |
[LeetCode - C] 28. Implement strStr() (0) | 2022.03.30 |