本文分类:news发布日期:2025/1/22 12:58:40
相关文章
大话设计模式解读01-简单工厂模式
本系列的文章,来介绍编程中的设计模式,介绍的内容主要为《大话设计模式》的读书笔记,并改用C语言来实现(书中使用的是.NET中的C#),本篇来学习第一章,介绍的设计模式是——简单工厂模式。
1 面向对象编程
…
建站知识
2025/1/12 11:58:27
前端 html格式转md格式插件使用介绍
1.html-to-markdown
npm install html-to-markdown
不支持vue32.Marked
npm install marked
不支持table转换
官网 https://marked.js.org/3.html-to-md
npm i html-to-md
import html2md from html-to-md
console.log(html2md(<strong><em>strong and italic…
建站知识
2025/1/19 19:14:23
机器学习中的集成学习
💬内容概要
1 集成学习概述及主要研究领域 2 简单集成技术 2.1 投票法 2.2 平均法 2.3 加权平均 3 高级集成技术 3.1 Bagging 3.2 Boosting 3.3 Bagging vs Boosting 4 基于Bagging和Boosting的机器学习算法 4.1 sklearn中的Bagging算法 4.2 sklea…
建站知识
2025/1/22 12:54:32
C语言中常用辅助调试信息的宏定义
宏: _ _ F I L E _ _ \color{red} \_\_FILE\_\_ __FILE__
在编译时会替换成当前的源文件名称,字符串类型。
printf("file name:%s\r\n", __FILE__);则输出
file name:.\app\bsp.c宏: _ _ F U N C T I O N _ _ \color{red} \_\_F…
建站知识
2025/1/16 22:27:29
分布式session共享配置
目录
1、spring-session
1.1 添加依赖
1.2 spring-mvc.xml配置文件
1.3 web.xml
2、tomcat配置session、共享
2.1 Tomcat配置
2.2 Web.xml配置 1、spring-session
官方文档:https://docs.spring.io/spring-session/docs/1.3.0.RELEASE/reference/html5/
1.…
建站知识
2025/1/19 19:46:27
Double Add
一种在椭圆曲线上执行点乘法的算法,通常用于椭圆曲线密码学中的密钥生成和数字签名等操作。用于计算一个点的倍数,即将一个点与一个整数相乘。
算法包括两个基本操作,加法和倍增。
Double倍增
将一个点与自己相加,在椭圆曲线上…
建站知识
2025/1/22 12:50:27
vscode导入自定义模块报错ModuleNotFoundError解决方案
问题描述
我的项目为great_gas_or_agents,目录结构如下:
log_data_extract main.py math_algorithm 现在我运行main.py,报错:from math_algorithm.utils import parse_month_match_request,ModuleNotFoundError: No …
建站知识
2025/1/15 2:03:09
【Matplotlib作图-5.Composition】50 Matplotlib Visualizations, Python实现,源码可复现
目录 05 Composition 5.0 Prerequisite 5.1 Waffle Chart 5.2 Pie Chart 5.3 Treemap 5.4 Bar Chart References 05 Composition 5.0 Prerequisite Setup.py
# !pip install brewer2mpl
import numpy as np
import pandas as pd
import matplotlib as mpl
import matplot…
建站知识
2025/1/16 19:57:24