摘要: 下载meme套件,网址:https://meme-suite.org/meme/doc/download.htm 查看缺失依赖 cd scripts perl dependencies.pl cpan File::Which missing # 安装缺失依赖 安装 ./configure prefe 阅读全文
posted @ 2021-11-09 09:38 shengtudai 阅读(1083) 评论(0) 推荐(0)
摘要: 安装conda wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh bash Miniconda3-latest-Linux-x86_64.sh # 取消conda自动激活 conda confi 阅读全文
posted @ 2021-11-07 20:02 shengtudai 阅读(1217) 评论(0) 推荐(0)
摘要: 问题ssh 登录服务器缓慢,加上-vvv查看登录日志 ssh -vvv root@ip 输入密码后, 输出卡在 client_check_window_change:changed 解决方法重启systemd-login 和 systemd systemctl restart systemd-log 阅读全文
posted @ 2021-06-11 16:12 shengtudai 阅读(314) 评论(0) 推荐(0)
摘要: 原文链接:https://www.52pojie.cn/forum.php?mod=viewthread&tid=1157907&highlight=bandzip 本帖最后由 wk222 于 2020-4-28 21:22 编辑 更正了标题名称,这样希望不会有搜索不到重复发帖的了改序列号配合去除联 阅读全文
posted @ 2021-04-23 09:58 shengtudai 阅读(2157) 评论(0) 推荐(0)
摘要: package com.dai.tree.threadedbinarytree; public class ThreadedBinaryTreeDemo { public static void main(String[] args) { //测试中序线索二叉树功能是否正确 HeroNode roo 阅读全文
posted @ 2021-02-27 00:02 shengtudai 阅读(73) 评论(0) 推荐(0)
摘要: package com.dai.tree; public class ArrBinaryTreeDemo { public static void main(String[] args) { // TODO Auto-generated method stub int[] arr = {1,2,3, 阅读全文
posted @ 2021-02-27 00:00 shengtudai 阅读(119) 评论(0) 推荐(0)
摘要: package com.dai.tree; import java.net.NoRouteToHostException; public class BinaryTreeDemo { public static void main(String[] args) { //先创建一个二叉树 Binary 阅读全文
posted @ 2021-02-23 21:44 shengtudai 阅读(141) 评论(0) 推荐(0)
摘要: package com.dai.hashtab; import java.security.PublicKey; import java.util.Scanner; public class HashTabDemo { public static void main(String[] args) { 阅读全文
posted @ 2021-02-22 23:40 shengtudai 阅读(91) 评论(0) 推荐(0)
摘要: 插值查找 package com.dai.search; import java.util.Arrays; public class InsertValueSearch { public static void main(String[] args) { int[] arr = new int[10 阅读全文
posted @ 2021-02-21 19:52 shengtudai 阅读(75) 评论(0) 推荐(0)
摘要: 线性查找 package com.dai.search; public class SeqSearch { public static void main(String[] args) { // TODO Auto-generated method stub int[] arr = {1, 9, 1 阅读全文
posted @ 2021-02-20 21:25 shengtudai 阅读(136) 评论(0) 推荐(0)