Length of Last Word

Source: Internet
Author: User

Original question link: http://oj.leetcode.com/problems/length-of-last-word/
This question is relatively simple, that is, to perform a string operation. The only detail is to remove the trailing space, read the next space, and record the length. The time complexity is O (n), n is the length of the string, and the space complexity is O (1 ). The Code is as follows:

Public int lengthOfLastWord (String s) {if (s = null | s. length () = 0) return 0; int idx = s. length ()-1; while (idx> = 0 & s. charAt (idx) = '') idx --; int idx2 = idx; while (idx2> = 0 & s. charAt (idx2 )! = '') Idx2 --; return idx-idx2 ;}
This type of question is relatively simple. It examines the simplest code implementation, which is generally the first basic question for the interview. This kind of question should be careful and cannot be implemented with bugs.

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.