[C + +] leetcode:116 Excel Sheet column number (Excel columns coordinates go to numbers)

Source: Internet
Author: User

Topic:

Related to question Excel Sheet Column Title

Given a column title as appear in an Excel sheet, and return its corresponding column number.

For example:

    1,    B, 2    C-3    ...    27 AA, Z    

idea: This problem and Excel Sheet Column title and is corresponding. This question asks us to convert the letters in Excel into numbers. Observe the law, we just need to figure out the corresponding number of each letter, iterative increase can be, note that the Excel table alphanumeric correspondence is 26 binary.

Attention:

1.26 English letters to correspond to numbers. S[i]-' A ' + 1

Ans = (s[i]-' A ' + 1) + ans * 26;


Complexity: O (N)

AC Code:

Class Solution {public:    int Titletonumber (string s) {        int ans = 0;        if (s.size () = = 0) return ans;                for (int i = 0; i < s.size (); i++)        {            ans = (s[i]-' A ' + 1) + ans *;        }                return ans;    };



[C + +] leetcode:116 Excel Sheet column number (Excel columns coordinates go to numbers)

Related Article

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.