[LeeCode] Length of Last Word

Source: Internet
Author: User

[LeeCode] Length of Last Word

Given a string s consists of upper/lower-case alphabets and empty space characters '', return the length of last word in the string.
If the last word does not exist, return 0.

Note: A word is defined as a character sequence consists of non-space characters only.

For example,
Given s = "Hello World ",
Return 5.

It's easy to find the length of the last word in a string. Just be careful not to cross-border access ~ Code:

Class Solution {public: int lengthOfLastWord (const char * s) {int len = strlen (s); if (! Len) return 0; int I = len-1; while (I> = 0 & s [I] = '') {I --;} int count = 0; while (I> = 0 & s [I]! = '') {Count ++; I --;} return count ;}};

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.