05 2017 档案
摘要:set用于创建集合 字符集合:set('abc') 数值集合:set([1,2,3]) 增加元素:a.add('x') 增加多项:a.add([x,y,z]) 注意:比较a.add('xyz') 与 a.update('xyz') a.issubset(b) a<=b a.issuperset(b)
阅读全文
摘要:set用于创建集合 字符集合:set('abc') 数值集合:set([1,2,3]) 增加元素:a.add('x') 增加多项:a.add([x,y,z]) 注意:比较a.add('xyz') 与 a.update('xyz') a.issubset(b) a<=b a.issuperset(b)
阅读全文
摘要:def MaxCrossSubarray(num,mid,low,high): leftsum=0 leftmax=-1000000 rightsum=0 rightmax=-1000000 for i in range(mid,low-1,-1): leftsum=leftsum+num[i] if leftsum...
阅读全文
摘要:LiDar: a giant laser ranging device sending out millions of pulses per second. You can get the distance or the range to the target from LiDar. GPS(Glo
阅读全文
摘要:Map is a spatial model of a robot's environment Mapping is a process for building a map Consideration for mapping map representation available sensors
阅读全文