leetcode#66. Plus One

2024-09-07 22:08
文章标签 leetcode plus one 66

本文主要是介绍leetcode#66. Plus One,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目

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

You may assume the integer do not contain any leading zero, except the number 0 itself.

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

理解

看到这个题,忍不住就想用递归,虽然递归可能不是最快的方法,但是不用就会觉得蠢啊,代码不够简单啊,于是下面的代码就是结果

代码一

class Solution(object):def plusOne(self, digits):""":type digits: List[int]:rtype: List[int]"""if digits[0] == 0 and len(digits) == 1:return [1]elif digits[-1] == 9:digits[-1] = 0return self.addOne(digits, -2)else:digits[-1] += 1return digitsdef addOne(self, digits, pos):if abs(pos) > len(digits):digits = [1] + digitselif digits[pos] == 9:digits[pos] = 0return self.addOne(digits, pos - 1)else:digits[pos] += 1return digits

就不解释了,很简单的题。问题是提交后发现才打败23.97%的人,用了52ms。我去,别人的代码都是有多快,不行我得改进下,不能用递归。估计是函数调用浪费的时间,我得把addOne去掉。

代码二

class Solution(object):def plusOne(self, digits):""":type digits: List[int]:rtype: List[int]"""if digits[0] == 0 and len(digits) == 1:return [1]pos = -1while True:if abs(pos) > len(digits):return [1] + digitsif digits[pos] == 9:digits[pos] = 0pos -= 1else:digits[pos] += 1return digits

我去,这个代码用时86ms,只打败了0.93%的人,虽然代码简短了很多…然后我不太相信的又提交了一遍,变成35ms,打败94.72%的人了[笑哭脸],对此我也是无”法科”说。闲着的我又提交了一次,倒是没变化了,看来第一次提交时不知道发生了什么不科学的事。

代码三

class Solution(object):def plusOne(self, digits):""":type digits: List[int]:rtype: List[int]"""pos = -1while abs(pos) <= len(digits):if digits[pos] == 9:digits[pos] = 0pos -= 1else:digits[pos] += 1return digitsreturn [1] + digits

回头又看了下,其实可以更简单啊,最终应该就是这样了。用时就不放上来了,每次都不一样…

结论

再次证实了,循环和递归可以进行某种程度上的互换,但是千万别随意同时使用,谨以此文纪念今天花费了许多时间解决的leetcode第10题

这篇关于leetcode#66. Plus One的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1146289

相关文章

SpringBoot基于MyBatis-Plus实现Lambda Query查询的示例代码

《SpringBoot基于MyBatis-Plus实现LambdaQuery查询的示例代码》MyBatis-Plus是MyBatis的增强工具,简化了数据库操作,并提高了开发效率,它提供了多种查询方... 目录引言基础环境配置依赖配置(Maven)application.yml 配置表结构设计demo_st

解决mybatis-plus-boot-starter与mybatis-spring-boot-starter的错误问题

《解决mybatis-plus-boot-starter与mybatis-spring-boot-starter的错误问题》本文主要讲述了在使用MyBatis和MyBatis-Plus时遇到的绑定异常... 目录myBATis-plus-boot-starpythonter与mybatis-spring-b

Spring Boot 中整合 MyBatis-Plus详细步骤(最新推荐)

《SpringBoot中整合MyBatis-Plus详细步骤(最新推荐)》本文详细介绍了如何在SpringBoot项目中整合MyBatis-Plus,包括整合步骤、基本CRUD操作、分页查询、批... 目录一、整合步骤1. 创建 Spring Boot 项目2. 配置项目依赖3. 配置数据源4. 创建实体类

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

【C++ Primer Plus习题】13.4

大家好,这里是国中之林! ❥前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站。有兴趣的可以点点进去看看← 问题: 解答: main.cpp #include <iostream>#include "port.h"int main() {Port p1;Port p2("Abc", "Bcc", 30);std::cout <<

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

leetcode-23Merge k Sorted Lists

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode mergeKLists

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return