任务 输入N个整数,存入数组,实现以下函数: 实现数组内容原地逆置; 找出数组中的最大元素与第一个元素交换; 输出数组元素的值 编写一个主程序,测试以上3个函数。 代码实现 #include<stdio.h> void swap(int array[], int indexF, int indexS ...
分类:
编程语言 时间:
2021-04-26 14:01:19
阅读次数:
0
logback简单实现对日志的保存和处理,且保存有效时间,7天, 配置文件 <?xml version="1.0" encoding="UTF-8"?> <configuration> <springProperty scope="context" name="loglevel" source="l ...
分类:
编程语言 时间:
2021-04-26 13:55:32
阅读次数:
0
下载到导入的jar包 maven-source-plugin-2.2.1.jar 使用命令导入: mvn install:install-file -Dfile=D:\opensource\maven-source-plugin-2.2.1.jar -DgroupId=org.apache.mave ...
分类:
编程语言 时间:
2021-04-24 13:46:44
阅读次数:
0
什么是mycat 1、一个彻底开源的,面向企业应用开发的大数据库集群 2、支持事务、ACID、可以替代MySQL的加强版数据库 3、一个可以视为MySQL集群的企业级数据库,用来替代昂贵的Oracle集群 4、一个融合内存缓存技术、NoSQL技术、HDFS大数据的新型SQL Server 5、结合传 ...
分类:
数据库 时间:
2021-04-24 13:26:20
阅读次数:
0
1.查看系统自带别名 2.设置别名方式,这里拿网卡路径设置 alias cdnet='cd /etc/sysconfig/network-scripts/' 3.要永久生效,需要编辑家目录的.bashrc文件 4.编辑完成后,保存退出,使用source .bashrc命令即可立即生效。 ...
分类:
其他好文 时间:
2021-04-22 15:40:49
阅读次数:
0
Linux系统调用表 记录下来,免得到处找 32位 int 0x80 %eax Name Source %ebx %ecx %edx %esx %edi 1 sys_exit kernel/exit.c int - - - - 2 sys_fork arch/i386/kernel/process. ...
分类:
系统相关 时间:
2021-04-22 15:36:36
阅读次数:
0
python 虚拟环境 创建一个虚拟环境 python3 -m venv /path/to/new/virtual/environment 使用虚拟环境 source ./venv_name/bin/activate ...
分类:
编程语言 时间:
2021-04-22 15:27:26
阅读次数:
0
查看当前默认编码方式 show VARIABLES like 'character_%'; 把linan1类型改成utf8 set character_set_database=utf8; ps:这一步我感觉关系不大?不过网上都说让改,我没改好像也没问题 ef连接字符串修改: Data Source ...
分类:
数据库 时间:
2021-04-21 12:44:41
阅读次数:
0
1. Overview JasperReports is an open source reporting library that enables users to create pixel-perfect reports that can be printed or exported in ma ...
分类:
编程语言 时间:
2021-04-21 11:48:33
阅读次数:
0
###重装系统,安装python3.7.5之后,使用pip3 install ipython时出现了报错信息: Can't connect to HTTPS URL because the SSL module is not available 1、cd 到Python-3.7.5目录下,重新编译安 ...
分类:
Web程序 时间:
2021-04-20 15:43:58
阅读次数:
0