Python华为机试(一):字符串最后一个单词的长度

题目描述
计算字符串最后一个单词的长度,单词以空格隔开。
输入描述
一行字符串,非空,长度小于5000。
输出描述
整数N,最后一个单词的长度。
示例
输入:hello world

输出:5
思路1
统计空格的总个数,当遇到导数第一个空格时退出循环,并统计字符串剩余的元素个数

word = input()
length = len(word)
count = 0

for i in range(length):
    if word[i] == ' ':
        count = count+1
i = 0
j = 0
while i<count:
    if word[j]==' ':
        i = i+1
    j =j+1
i = 0
while j<length:
    i = i+1
    j = j+1
print(i)

思路2
考虑可以直接将字符串反转,当遇到空格就结束计数即可

word = input()
length = len(word)
word = word[::-1]
count = 0
for i in range(length):
    if word[i]==' ':
        break
    else:
        count=count+1
print(count)


你可能感兴趣的:(python华为机试,python,算法,leetcode,字符串)