摘要: ![](https://img2023.cnblogs.com/blog/1892401/202309/1892401-20230911151113927-1124748338.jpg) 阅读全文
posted @ 2023-09-11 15:11 大超Zeo 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 通常我们需要在内网服务器上安装一些pip包,但是内网服务器无法联通外网,不能直接通过pip源下载pip包进行安装,下载单个pip包又会有很多依赖问题,这样就非常麻烦。 解决办法 制作requirement.txt 此处制作requirement只是为了测试,pip freeze命令可将已安装的模块列 阅读全文
posted @ 2022-07-19 17:21 大超Zeo 阅读(2335) 评论(0) 推荐(0) 编辑
摘要: SQL Server CONVERT() 函数 阅读全文
posted @ 2022-02-15 10:17 大超Zeo 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 下面是几种可用的格式: %a 星期几的简写 Weekday name, abbr %A 星期几的全称 Weekday name, full %b 月分的简写 Month name, abbr %B 月份的全称 Month name, full %c 标准的日期的时间串 Complete date a 阅读全文
posted @ 2022-02-10 14:36 大超Zeo 阅读(3081) 评论(0) 推荐(0) 编辑
摘要: sudo apt install ubuntu-restricted-extras 阅读全文
posted @ 2021-02-04 20:27 大超Zeo 阅读(429) 评论(1) 推荐(1) 编辑
摘要: 如果不需要确定当前遍历到了哪一层,BFS模板如下。 while queue 不空: cur = queue.pop() for 节点 in cur的所有相邻节点: if 该节点有效且未访问过: queue.push(该节点) 如果要确定当前遍历到了哪一层,BFS模板如下。 这里增加了level表示当 阅读全文
posted @ 2020-07-28 21:19 大超Zeo 阅读(310) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fuxuemingzhu/article/details/101900729 阅读全文
posted @ 2020-07-28 21:07 大超Zeo 阅读(155) 评论(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 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 控制面板 → 程序 → 启动或关闭windows功能 → 打开 SMB1.0/CIFS文件共享支持 打开服务,确认Function Discovery Resource Publication是否处于启动状态 开始一运行一gpedit.msc一确定-本地计算机策略_WindoWS设置-安全设置-本地 阅读全文
posted @ 2020-07-21 11:07 大超Zeo 阅读(4336) 评论(0) 推荐(0) 编辑
摘要: 用python和Excel进行列联表分析 卡方检验回顾(独立性检验) 行(\(r_i\))列(\(c_j\)) \(j=1\) \(j=2\) \(\cdots\) 合计 \(i=1\) \(f_{11}\) \(f_{12}\) \(r_1\) \(i=2\) \(f_{21}\) \(f_{22 阅读全文
posted @ 2020-06-10 13:35 大超Zeo 阅读(3433) 评论(0) 推荐(0) 编辑