- 博客(8)
- 收藏
- 关注
原创 application.yml
server:port: 8086address: 0.0.0.0spring:devtools:restart:enabled: trueexclude: templates/**thymeleaf:prefix:classpath: /templates/mode: LEGACYHTML5suffix: .htmlencoding: UTF-8content-type: text/htmlcache: falsedatasource:driverClass: com.my
2023-04-17 10:26:21 113
原创 蓝桥杯基础之16进制、10进制、8进制、2进制换算总结
常用函数的一些小总结string to int(字符串转到int类型)#include<sstream> //重要的库#include<iostream>#include<string>using namespace std;int str2int(string str){ stringstream ss; int value; ss<<str; //将字符串传到ss流中 ss>>value;
2022-03-30 21:54:57 773
原创 银行风控神经网络
import pandas as pdimport numpy as np#导入划分数据集函数from sklearn.model_selection import train_test_split#混淆矩阵可视化函数cm_plotdef cm_plot(y, yp): from sklearn.metrics import confusion_matrix # cm = confusion_matrix(y, yp) import matplotlib.pyplot
2022-03-30 13:02:38 172
原创 一则可行的关于运行QT时弹出 Cannot run compiler ‘g++‘. Output的解决方案
一则可行的关于运行QT creator 时弹出 Cannot run compiler ‘g++’. Output的解决方案0.适用的前提情况1.安装并卸载过Anaconda的。2.一打开cmd就有提示 “系统找不到指定的路径 ”1.问题发现:最近安装了QT creator,运行测试程序的时候一直运行不了,提示Cannot run compiler 'g++'. Output:............Maybe you forgot to setup the environment?如
2021-11-15 15:22:04 9382 5
原创 贪心法求解磁盘驱动调度问题
磁盘驱动调度问题题目:输入一个请求序列:98,183,37,122,14,124,65,67n=8假设磁头一开始的位置start处于c(c不在序列中的任何位置),例如c=53如果采用最短寻道优先SSTF,输出序列的调度顺序和磁头移动总数。解题思路:将请求的序列有序地进行排列,甚至将起始结点 53 也加入序列中进行排列。当前起始结点只需要和左右两边的两个数字进行比较,计算起始点与左右两个结点相差的距离,选择拥有最短距离的结点,并将当前结点作为起始结点。每一步都是选择当前最优解,符合贪心法的性
2021-06-16 23:44:15 1251 2
原创 贪心算法求解一个序列中出现次数最多的元素问题
求解一个序列中出现次数最多的元素问题指定n个正整数,编写一个实验程序找出它们中出现次数最多的数。如果这样的数有多个,请输出其中最小的一个。输入描述:输入的第1行只有一个正整数n(1<=n<=1000),表示数字的个数;输入的第2行有n个整数s1、s2、…、sn(1<=i<=n)。相邻的数用空格分隔。输出描述:输出这n个次数中出现次数最多的数。如果这样的数有多个,输出其中最小的一个。输入样例:610 1 10 20 30 20输出样例:10#include<
2021-06-10 20:45:58 4518
原创 CommandNotFoundError: Your shell has not been properly configured to use ‘conda activate‘. If using
用 Anaconda的指令 conda activate 遇到了错误提示。CommandNotFoundError: Your shell has not been properly configured touse ‘conda activate’. If using ‘conda activate’ from a batch script,change your invocation to ‘CALL conda.bat activate’.前前后后查了很多方法,试过conda init c
2021-05-16 08:05:50 13660 13
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人