摘要:
背景 近期在工作中,我接触到了一种高效的数据结构——自适应基数树(Adaptive Radix Tree,ART)。ART 是一种基于基数树(Radix Tree)的数据结构,旨在提供高效的键值存储和查找功能。与传统的基数树不同,ART 通过自适应调整节点大小(如 Node4、Node16、Node 阅读全文
摘要:
import pandas as pd import numpy as np import warnings warnings.filterwarnings("ignore") pd.options.plotting.backend = "plotly" #从csv文件获取数据 data = pd. 阅读全文
摘要:
在DMN中,可以通过Use Service Task来获取外部系统的数据。Use Service Task是一种可嵌入服务调用的任务类型,允许在规则流程中调用外部服务,包括Web服务、REST服务等。使用Use Service Task时,需要在DMN文件中定义任务的输入输出参数,然后在规则中调用该 阅读全文
摘要:
在MacOS系统中,可以通过homebrew安装7zip,并在命令行中使用7z来压缩并加密文件。具体命令如下: 1. 安装7zip: ```brew install p7zip``` 2. 压缩并加密文件: ```7z a -p[密码] -mx=[压缩级别] [压缩文件名].7z [待压缩文件或目录 阅读全文
摘要:
https://stackoverflow.com/questions/65389275/modulenotfounderror-no-module-named-crypto-python-3-9-pycharm 阅读全文
摘要:
阅读全文
摘要:
不能够直接用github的username和password来push代码了。 需要用自己的github token 拼接处下面的url地址: 然后执行git push url 如果想每次仍然使用git push命令: 使用git remote set-url origin https://ghp_ 阅读全文
摘要:
macos配置情况: jdk编译依赖比当前版本至少小一个版本的jdk版本,作为boot,jdk,boot jdk下载:https://jdk.java.net/17/: https://download.java.net/java/GA/jdk17.0.2/dfd4a8d0985749f896bed 阅读全文
摘要:
step1: git clone https://github.com/intoolswetrust/jd-cli.git step2: mvn install 得到jd-cli.jar 命令行执行: java -jar jd-cli.jar <your_jar_file> 反编译结果: 阅读全文