LeetCode 66 — Plus One(C++ Java Python)

來源:互聯網
上載者:User

題目:http://oj.leetcode.com/problems/plus-one/

Given a non-negative number represented as an array of digits, plus one to the number.

The digits are stored such that the most significant digit is at the head of the list.

題目翻譯:

給定一個數字數組表示的非負數,對該數加1。
最高位元字儲存在列表的頭部。
分析:

        從後向前處理。如果不再有進位,則可以跳出迴圈。如果最高位產生了進位需要在數組的頭部插入1。

C++實現:

class Solution {public:    vector<int> plusOne(vector<int> &digits) {    int carry = 1;    int i = digits.size() - 1;    for(; i >= 0; --i)    {    digits[i] += carry;    if(digits[i] >= 10)    {    digits[i] -= 10;    carry = 1;    }    else    {    carry = 0;    break;    }    }    if(i == -1 && carry == 1)    {    digits.insert(digits.begin(), 1);    }    return digits;    }};

Java實現:

public class Solution {    public int[] plusOne(int[] digits) {int carry = 1;int i = digits.length - 1;for (; i >= 0; --i) {digits[i] += carry;if (digits[i] >= 10) {digits[i] -= 10;carry = 1;} else {carry = 0;break;}}if (i < 0) {int[] result = new int[digits.length + 1];result[0] = 1;System.arraycopy(digits, 0, result, 1, digits.length);return result;} else {return digits;}    }}
Python實現:

class Solution:    # @param digits, a list of integer digits    # @return a list of integer digits    def plusOne(self, digits):        carry = 1        for j in range(len(digits) - 1, -1, -1):            digits[j] += carry                        if digits[j] >= 10:                digits[j] -= 10                carry = 1            else:                carry = 0                break                if j == 0 and carry == 1:            digits.insert(0, 1)                return digits

        感謝閱讀,歡迎評論。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.