首页 > 代码库 > Python-一些实用的函数

Python-一些实用的函数

1.any()函数

  any(iterable)->bool

  当迭代器中有一个是Ture,则返回Ture;若interable=NUll,则返回False.

>>> any([1,0])
True
>>> any([0,0])
False
>>> any([])
False
>>> any([1,0,0])
True

应用:在一颗二叉树中,找出每一层中的最大元素(leetcode515)。

Input: 

          1
         /         3   2
       / \   \  
      5   3   9 

Output: [1, 3,9] 

#类节点的定义
class
node(self) : def __init__(self,data) self.val=data self.right=NULL self.left=NULL

class Solution(object): def largestValues(self, root): maxlist=[] row=[root] while any(row): maxlist.append(max[node.val for node in row]) row=[kid for node in row for kid in node.left,node.right) if kid] return maxlist

2.all()函数

 all(iterable)->bool

 迭代器中每个元素必须都为真时,返回Ture,否则返回False.

>>> all([1,0])
False
>>> all(["e",1])
True

3.map()--内置的高阶函数(可以接受函数名为参数的函数--高阶函数)

 

Python-一些实用的函数