Day14 求1+2+…+n【Q】

本文介绍了一种不使用传统循环或条件语句求1到n之和的方法,利用C++和Python的短路求值特性,通过递归实现求和功能,并提供了多种实现示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目:
求 1+2+…+n ,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
leetcode原题链接

思路:

  • 短路求值。
  • C语言/C++中,逻辑与【&和&&】的区别
    &两边 都会运算
    &&先算左侧,若左侧为假【False】,右侧就不运算了
    【|和||同理】||先算左侧,若左侧为真【True】,右侧就不运算了
  • python中,用and和or来实现短路求值

代码:
① C++

class Solution {
public:
    int sumNums(int n) {
        n && (n+=sumNums(n-1));//n>0时,才会运算右侧的 n=n+sumNums(n-1);递归到n==0时,不会运算右侧,直接运行下一行代码return n=0,再逐层向上返回结果值
        return n;
    }
};

运行效果
在这里插入图片描述
② python

class Solution:
    def sumNums(self, n: int) -> int:
        return n and n+self.sumNums(n-1)

运行效果
在这里插入图片描述

③ 用if的python写法【不符合题目要求,仅参考其递归思路】

class Solution:
    def sumNums(self, n: int) -> int:
        if n==0:#递归的基本结束条件,最小规模问题的直接解决
            return 0
        if n>0:#其他情况下,减小问题规模,向基本结束条件演进
            return n+self.sumNums(n-1)#调用自身

运行效果
在这里插入图片描述
④ 利用python中的sum()函数,对range()函数生成的可迭代对象求和

class Solution:
    def sumNums(self, n: int) -> int:
        return sum(range(1,n+1))

运行效果
在这里插入图片描述
【错误代码】
python中 使用and和or 不能用"="?
在这里插入图片描述
在这里插入图片描述

在C++中,我们可以使用模运算(取余)来快速计算给定日期后的星期几。因为一周有7天,所以只需要对日期加上偏移量(例如,增加n天),然后用结果除以7并取余数,余数0代表周一,1代表周二,依此类推,直到6代表周六。 以下是一个简单的C++函数示例,它接受一个整数`n`和当前日期的年、月、日,然后返回`n`天后的星期: ```cpp #include <iostream> int get_weekday(int n, int month, int day) { // 使用Zeller's congruence公式(也叫蔡勒公式),这是一种古老的算法用于计算日期对应的星期 static const int days_in_month[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int year = (month <= 2) ? (year - 1) : year; // 调整闰年的处理 int q = day; if (is_leap_year(year)) { q += ((month == 2) && (day > 29)); } else { q += ((month >= 3) && (month <= 12) && (day > days_in_month[month - 1])); } q += n; // Zeller's congruence int h = (q + floor(2.6 * (q + 1) / 10) + year + floor(year / 4) - floor(year / 100) + floor(year / 400)) % 7; return (h + 7) % 7; // 将结果转换到正确的范围(0-6) } bool is_leap_year(int year) { return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); } int main() { int n, current_day, current_month, current_year; std::cout << "Enter the number of days to add and today's date (e.g., 15 3 2023): "; std::cin >> n >> current_month >> current_day >> current_year; int future_day = get_weekday(n, current_month, current_day); std::cout << "The weekday " << n << " days from now is: " << (future_day == 0 ? "Monday" : (future_day == 1 ? "Tuesday" : (future_day == 2 ? "Wednesday" : (future_day == 3 ? "Thursday" : (future_day == 4 ? "Friday" : (future_day == 5 ? "Saturday" : "Sunday")))))); return 0; } ``` 在这个代码中,我们首先检查是否为闰年,然后根据蔡勒公式计算星期,最后将结果调整到标准的0-6范围(对应于周日到周六)。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值