This article introduces the recursive applet sample code
# -*- coding:utf-8 -*- __author__ = 'Abel Xu' def func(n): """ T(n) = 4T(n/2)+n = 2n^2-n :param n: :return: """ if n==0: return 0 return 4 * func(n/2) + n # 另一套写法 f = lambda x: x and 4*f(x/2)+x or 0 if __name__ == '__main__': for i in xrange(0, 6, 2): print(func(i)) print f(4)
The above is the detailed content of Recursive applet example code. For more information, please follow other related articles on the PHP Chinese website!