07 2020 档案

摘要:如果不需要确定当前遍历到了哪一层,BFS模板如下。 while queue 不空: cur = queue.pop() for 节点 in cur的所有相邻节点: if 该节点有效且未访问过: queue.push(该节点) 如果要确定当前遍历到了哪一层,BFS模板如下。 这里增加了level表示当 阅读全文
posted @ 2020-07-28 21:19 大超Zeo 阅读(325) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/fuxuemingzhu/article/details/101900729 阅读全文
posted @ 2020-07-28 21:07 大超Zeo 阅读(159) 评论(0) 推荐(0)
摘要:class ListNode: def __init__(self, x): self.val = x self.next = None def LinkedList(a): L = ListNode(a[0]) l = L for i in range(1, len(a)): L.next = L 阅读全文
posted @ 2020-07-27 22:33 大超Zeo 阅读(170) 评论(0) 推荐(0)
摘要:控制面板 → 程序 → 启动或关闭windows功能 → 打开 SMB1.0/CIFS文件共享支持 打开服务,确认Function Discovery Resource Publication是否处于启动状态 开始一运行一gpedit.msc一确定-本地计算机策略_WindoWS设置-安全设置-本地 阅读全文
posted @ 2020-07-21 11:07 大超Zeo 阅读(4674) 评论(0) 推荐(0)