算法(一)梯形近似法求曲线面积

采用两种方法进行求解面积,递归与循环
探索中发现递归的使用时间比循环的使用时间长

from typing import Callable,Union
import sys
import time

sys.setrecursionlimit(10000)

def getArea(func:Callable[[Union[int,float]],Union[int,float]],
            x_start:Union[int,float],
            x_end:Union[int,float],
            steps:int)->Union[float]:
    x1 = x_start
    x2 = (x_end - x_start)/steps + x1
    if (steps == 1):
        return ((x_end - x_start)/steps)*(func(x_end)+func(x_end-(x_end - x_start)/steps))/2
    return (x2 - x1)*(func(x2) + func(x1))/2 + getArea(func,x2,x_end,steps-1)

def get_area(func:Callable[[Union[int,float]],Union[int,float]],
            x_start:Union[int,float],
            x_end:Union[int,float],
            steps:int)->Union[float]:
    x1 = x_start
    dis_x = (x_end - x_start) / steps
    area = 0
    for i in range(steps):
        x2 = x1 + dis_x
        area += (func(x2) + func(x1))*dis_x/2
        x1 = x2
    return area

timelabel = time.time()
for i in range(100):
    getArea(lambda x:x**2,1,10,6000)
time2 = time.time() - timelabel

timelabel = time.time()
for i in range(100):
    get_area(lambda x: x**2, 1, 10, 6000)
time3 = time.time() - timelabel

print("函数1的时间{0},函数2的时间{1}".format(time2,time3))

output:

函数1的时间1.067819356918335,函数2的时间0.5800333023071289
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值