美文网首页
Leetcode-PlusOne

Leetcode-PlusOne

作者: ButICare_b72d | 来源:发表于2024-01-18 21:16 被阅读0次

    package main.java.simple;

    /**https://leetcode.cn/problems/plus-one/description/

    • 给定一个由 整数 组成的 非空 数组所表示的非负整数,在该数的基础上加一。

    • 最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。

    • 你可以假设除了整数 0 之外,这个整数不会以零开头。

    • */
      class PlusOne {
      public static int[] plusOne(int[] digits) {
      int even = 1;
      int index = digits.length - 1;
      while (index >= 0 && even == 1) {
      digits[index] += even;
      even = digits[index] / 10;
      digits[index] = digits[index] % 10;
      index--;
      }
      if (even == 1) {
      int[] result = new int[digits.length + 1];
      result[0] = 1;
      System.arraycopy(digits, 0, result, 1, digits.length);
      return result;
      }
      return digits;
      }

      public static void main(String[] args) {
      System.out.println(plusOne(new int[]{9}));
      }
      }

    相关文章

      网友评论

          本文标题:Leetcode-PlusOne

          本文链接:https://www.haomeiwen.com/subject/gbjdodtx.html