导语:
本文主要介绍了关于python链表实现左移和右移的相关知识,希望可以帮到处于编程学习途中的小伙伴
1.对于链表,调用rotate(n)方法重载左移和右移(对应的内置方法__lshift__和__rshift__)。
def __lshift__(self, n):
return self.rotate(n)
def __rshift__(self, n):
return self.rotate(-n)
2、本次操作涉及的链表没有变化。要更改值,请使用 >>= 或 <= 进行分配。
也可以直接向代码中添加覆盖原链表的代码。
def __lshift__(self, n):
ret = self.rotate(n)
self.val,self.next = ret.val,ret.next
return ret
def __rshift__(self, n):
ret = self.rotate(-n)
self.val,self.next = ret.val,ret.next
return ret
'''
>>> node = Node.build(1,2,3,4,5)
>>> node
Node(1->2->3->4->5->None)
>>> node >> 1
Node(5->1->2->3->4->None)
>>> node >> 2
Node(3->4->5->1->2->None)
>>> node >> 3
Node(5->1->2->3->4->None)
>>> node
Node(5->1->2->3->4->None)
>>> node << 6
Node(1->2->3->4->5->None)
>>> node << 1
Node(2->3->4->5->1->None)
>>> node << 1
Node(3->4->5->1->2->None)
>>> node >> 2
Node(1->2->3->4->5->None)
>>> node
Node(1->2->3->4->5->None)
>>>
'''
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何用cmd打开python代码10/29
- ♥ python如何定义int类型10/06
- ♥ 如何用python写一个猜谜游戏?10/28
- ♥ python如何获取三个小时前的时间并输出01/05
- ♥ 如何使用 pip 运行 python10/31
- ♥ 如何在python中使用django模型?01/03
内容反馈