plus-one(加一)

題目描述 Given a number represented as an array of digits, plus one to the number. 題目大意 用一個數組表示一個數,把這個數做加一操作。 思路 不需要flag! 從右向左,遇到9就變0,非9就加1,然後break; digits[0]如果等於0,說明長度增加了1,則新插入一個首位,首位爲1,其他位爲0。 代碼 #includ
相關文章
相關標籤/搜索