import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @author: small-sunshine * @Description:考拉兹猜想,100万以内的数 * @date: 2021/ ...
分类:
其他好文 时间:
2021-06-25 17:25:25
阅读次数:
0
How to quickly check installed software versions Posted on March 31, 2020by Adam the 32-bit Aardvark There are situations where you need to check whet ...
分类:
其他好文 时间:
2021-06-25 17:10:48
阅读次数:
0
Scala 操作MySQL 本地之前安装过MySQL 启动: mysql.server start 停止: mysql.setver stop 登录: mysql -u root ; 登录root用户。 选择一个database : use erwa 查看所有的database: show data ...
分类:
数据库 时间:
2021-06-25 17:00:08
阅读次数:
0
1.mysql下载 ①进入mysql官方网站:https://www.mysql.com/ 点击进入DOWNLOADS下载页面 ②进入下载页面后,找到mysql社区版本MySQL Community (GPL) Downloads点击进入 ③进入社区版页面后,进行如下点击 ④进入后,点击mysql版 ...
分类:
数据库 时间:
2021-06-25 16:48:34
阅读次数:
0
队列的应用场景: 数组模拟队列: package com.model.queue; import java.util.Scanner; /** * @Description:测试类 * @Author: 张紫韩 * @Crete 2021/6/24 20:39 * * 数组模拟队列,并验证 */ p ...
分类:
编程语言 时间:
2021-06-25 16:46:50
阅读次数:
0
""" 1.1交换 已知 a的值为”hello”,b的值为”world”,如何交换a和b的值? 得到a的值为”world”,b的值为”hello” """ a = "hello" b = "world" a,b = b,a print(a) print(b) """ 1.2回文 回文的定义:”回文” ...
分类:
编程语言 时间:
2021-06-24 18:06:51
阅读次数:
0
Problem: Importing an Oracle 11g R2 Data Pump file containing an ArcSDE 10.x geodatabase encounters Oracle errors ORA-31693, ORA-02354, ORA-00600 Desc ...
分类:
其他好文 时间:
2021-06-24 18:01:26
阅读次数:
0
编译型语言:在程序运行之前,有一个单独的编译过程,将程序翻译成机器语言,以后执行这个程序时,就不用再进行翻译了。(C,C++等,需要经过编译(compile)、链接(linker)这两个步骤) 解释型语言:是在运行的时候将程序翻译成机器语言,所以运行速度相对于编译型语言要慢。有良好的平台兼容性,在任 ...
分类:
编程语言 时间:
2021-06-24 17:46:19
阅读次数:
0
来源:https://www.cnblogs.com/dylancao/p/10019528.html 一 直接定义法: 1.直接定义 matrix=[0,1,2,3] 2.间接定义 matrix=[0 for i in range(4)] print(matrix) 二 Numpy方法: Nump ...
分类:
编程语言 时间:
2021-06-23 16:54:47
阅读次数:
0
1、8005 #关闭tomcat通信接口, port:指定一个端口,这个端口负责监听关闭Tomcat的请求 shutdown:向以上端口发送的关闭服务器的命令字符串<Server port="8005" shutdown="SHUTDOWN"> 2、8009 #与其他http服务器通信接口,用于ht ...
分类:
其他好文 时间:
2021-06-23 16:53:46
阅读次数:
0