python的全局变量使用_在python函数中使用全局变量

我正在研究最长递增子序列问题的this解决方案,注意到子序列长度最大值的全局变量在运行主函数的驱动程序和计算最长子序列的实际函数中都被重新定义:# global variable to store the maximum

global maximum

def _lis(arr , n ):

# to allow the access of global variable

global maximum

# Base Case

if n == 1 :

return 1

# maxEndingHere is the length of LIS ending with arr[n-1]

maxEndingHere = 1

"""Recursively get all LIS ending with arr[0], arr[1]..arr[n-2]

IF arr[n-1] is maller than arr[n-1], and max ending with

arr[n-1] needs to be updated, then update it"""

for i in xrange(1, n):

res = _lis(arr , i)

if arr[i-1] < arr[n-1] and res+1 > maxEndingHere:

maxEndingHere = res +1

# Compare maxEndingHere with overall maximum.And update

# the overall maximum if needed

maximum = max(maximum , maxEndingHere)

return maxEndingHere

def lis(arr):

# to allow the access of global variable

global maximum

# lenght of arr

n = len(arr)

# maximum variable holds the result

maximum = 1

# The function _lis() stores its result in maximum

_lis(arr , n)

return maximum

似乎每次递归调用都会重置最大值。在函数的局部范围内重新定义全局变量的目的是什么?在

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值