每日LeetCode - 7. 整数反转(C语言和Python 3)
2021/5/3 20:27:35
本文主要是介绍每日LeetCode - 7. 整数反转(C语言和Python 3),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
C语言
使用long类型:
#include "math.h" int reverse(int x){ int max = pow(2,31)-1; int min = pow(2,31)*-1; long n=0; while (x!=0){ n = n*10 + x%10; x = x/10; } if (n>=min && n <= max) return n; else return 0; }
只使用int,不使用long类型:
#include "math.h" int reverse(int x){ int max = pow(2,31)-1; int min = pow(2,31)*-1; int n=0; while (x!=0){ if (n>max/10 || n<min/10){ return 0; } else{ n = n*10 + x%10; x = x/10; } } return n; }
Python 3
class Solution: def reverse(self, x: int) -> int: n=0 while x!=0: n=n*10+x%10 x=x/10 return n if n!=None else 0
这篇关于每日LeetCode - 7. 整数反转(C语言和Python 3)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25Python编程基础:变量与类型
- 2024-11-25Python编程基础与实践
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器