WarOfUnderword
WarOfUnderword
全部文章
分类
基础算法(3)
数据库(1)
题解(4)
归档
标签
去牛客网
登录
/
注册
Alice
全部文章
(共25篇)
卡特兰数 - n个叶子节点的完全二叉树个数
//使用递归的方式 public static double CatalanNumber(int n) { if (n == 1) { return 1; } else { return CatalanNumbe...
2023-06-14
0
267
MYSQL每日自动备份
java代码 // // Source code recreated from a .class file by IntelliJ IDEA // (powered by FernFlower decompiler) // import java.awt.Color; import java.aw...
2023-06-12
0
279
js 保存文件到本地
定义请求 ajax export const createFileAPI = (url, method, data) => { let config = {} config.data = data config.headers = { 'Cache-Control': 'n...
2023-05-29
0
548
DB2数据库 报错(Operation not allowed for reason code "7")
错误内容: [57016][-668] Operation not allowed for reason code "7" on table "EQMS.TQSFD0610".. SQLCODE=-668, SQLSTATE=57016, DRIVER=4.26.14 解决方法: REORG tab...
2023-05-11
0
1561
npm
npm init -y 构建package.json 依赖管理文件 npm install 下载package.json中的所有第三方依赖包 npm install [包名](@[版本号]) 下载指定包名【以及对应版本】 【-D 表示将包安装在开发模式下】 【-g 安装为全局包 位置:C:...
2022-12-20
0
142
HTTP 首部
2022-10-14
0
141
点到直线距离公式(两点确定直线 Ax + By + C = 0)
c++ #include <iostream> #include <cmath> using namespace std; struct Point{ int x,y; Point(int x1,int y1){ x = x1; y = y1; } }; //...
C++
C
数学
Java
2022-10-08
0
576
分割字符串--split
#include<bits/stdc++.h> #define PI acos(-1) #define ios ios::sync_with_stdio(false) #define endl '\n' #define srand srand((unsigned)time(NULL)) ...
2022-09-27
0
229
httpClient 演示get/post请求
package com.example.httpcilent; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import or...
2022-08-31
0
225
docker
常见命令 systemctl start docker # 启动docker服务 systemctl stop docker # 停止docker服务 systemctl restart docker # 重启docker服务 拉取镜像:docker pull [拉取的镜像] exam...
2022-08-10
0
295
首页
上一页
1
2
3
下一页
末页