摘要:
1、报错 (FileNotFoundError: Could not find module '此处省略了一些路径\site-packages\scipy\.libs\libbanded5x.GL5FZ7Y77HIKQFNMZKUOMV5GID6YMX2V.gfortran-win_amd64.dl 阅读全文
摘要:
cmd启动/关闭mysql net start mysql #启动mysql net stop mysql #关闭mysql #无法运行就在管理员模式下输入命令 net start mysql80 #启动mysql80 net stop mysql80 #关闭mysql80 问题1 解决1 先 my 阅读全文
摘要:
/* 回溯法--求幂集(递归+非递归) */ #include <cstdio> const int N = 100; int n = 3; ////集合中元素个数 int state[N]; // 递归要用,0:不选,1:选,2:未确定 int op[N]; //非递归要用,0:不选,1:选,2: 阅读全文