LuckyXiaoFan666
码龄8年
关注
提问 私信
  • 博客:24,950
    动态:97
    25,047
    总访问量
  • 64
    原创
  • 1,675,965
    排名
  • 45
    粉丝
  • 0
    铁粉

个人简介:奋斗不息,编码不止。

IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:北京市
  • 目前就职: 百度在线网络技术(北京)有限公司
  • 加入CSDN时间: 2017-10-26
博客简介:

qq_40795475的博客

查看详细资料
个人成就
  • 获得57次点赞
  • 内容获得6次评论
  • 获得83次收藏
  • 代码片获得187次分享
  • 博客总排名1,675,965名
创作历程
  • 4篇
    2024年
  • 1篇
    2021年
  • 7篇
    2020年
  • 52篇
    2019年
成就勋章
TA的专栏
  • IT大佬养成记
兴趣领域 设置
  • 大数据
    mysqlredis
  • 后端
    spring架构
  • 服务器
    linux
创作活动更多

『技术文档』写作方法征文挑战赛

在技术的浩瀚海洋中,一份优秀的技术文档宛如精准的航海图。它是知识传承的载体,是团队协作的桥梁,更是产品成功的幕后英雄。然而,打造这样一份出色的技术文档并非易事。你是否在为如何清晰阐释复杂技术而苦恼?是否纠结于文档结构与内容的完美融合?无论你是技术大神还是初涉此领域的新手,都欢迎分享你的宝贵经验、独到见解与创新方法,为技术传播之路点亮明灯!

55人参与 去参加
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

docker+jekins+maven+ssh 持续集成交付部署 jar包

2.4 新建任务->选择构建一个自由风格的软件项目,在源码管理处配置外部gitee的仓库地址,用户名和密码,选择maven版本,并指定要传输的jar、Dockerfile等文件地址,配置ssh server和构建完之后要执行的脚本。2.3 点击系统管理菜单,给jekins安装以下插件、maven-integration-plugin、publish_over_ssh、gitee;2.1 拉取镜像,挂载工作目录,xxxx为宿主机指定工作目录。2.5 最后点击立即构建即可实现ci/cd。
原创
发布博客 2024.01.29 ·
698 阅读 ·
8 点赞 ·
0 评论 ·
9 收藏

centos7.9 缺失中文字体解决办法

/usr/share/fonts/chinese
原创
发布博客 2024.01.28 ·
1335 阅读 ·
7 点赞 ·
0 评论 ·
8 收藏

docker-compose离线安装

1.官网下载docker-compose文件,要用uname -r 看一下自己安装哪个版本。2.上传到/usr/local/bin目录下。
原创
发布博客 2024.01.27 ·
530 阅读 ·
9 点赞 ·
0 评论 ·
7 收藏

数组分割工具类,方便多线程任务处理。

【代码】数组分割,方便多线程任务处理。
原创
发布博客 2024.01.27 ·
531 阅读 ·
8 点赞 ·
0 评论 ·
9 收藏

驼峰命名转化

```javaimport java.util.Scanner;public class Main { public static String change(String s){ //结果字符串 StringBuilder sb=new StringBuilder(); //小写就直接append //遇到大写就继续往后判断一直到最后一个连续的大写为止 然后插入_小写_ //只有一个大写直接 append .
原创
发布博客 2021.04.26 ·
670 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

二叉排序树的增删查改初始化 以及关于count的操作(2017 北工 892 算法题)

#include <iostream>using namespace std;typedef struct BinarySearchTree{ int data; int count; struct BinarySearchTree* left; struct BinarySearchTree* right; BinarySearchTree() { } BinarySearchTree(int x)
原创
发布博客 2020.12.06 ·
171 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

奇数偶数划分到2边(有点跟快排的partition差不多)

#include <iostream>using namespace std;int main() { int a[10]; int n; cin>>n; for(int i=0;i<n;++i) { cin>>a[i]; } for(int i=0;i<n;++i) { cout<<a[i]; } ...
原创
发布博客 2020.12.06 ·
233 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

二叉树求叶子结点数以及树的深度

#include <iostream>using namespace std;typedef struct Tnode{ int data; struct Tnode* left; struct Tnode* right; Tnode(int x) { this->data=x; this->left=NULL; this->right=NULL; } Tnode()
原创
发布博客 2020.12.06 ·
1031 阅读 ·
0 点赞 ·
0 评论 ·
5 收藏

链表删除所有最大结点

```cpp```cpp#include <iostream>using namespace std;typedef struct Node{ int data; struct Node* next; Node(int x) { this->data=x; this->next=NULL; } //空的构造方法 Node(){ }};//打印链表void print(.
原创
发布博客 2020.12.06 ·
264 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

链表直接插入排序法

#include <stdio.h>#include <stdlib.h>//链表结构typedef struct Lnode{ int data; struct Lnode* next;}Lnode;//打印链表void printList(Lnode* head){ Lnode* p=head->next; while(p) { printf("%d ",p->data); p=
原创
发布博客 2020.08.11 ·
828 阅读 ·
1 点赞 ·
1 评论 ·
5 收藏

顺序存储的二叉树求两个结点的最近的公共祖先结点

#include <iostream>#define MAXSIZE 100using namespace std;typedef struct Tnode{ int data; bool isExist;}Tnode;typedef struct SequenceTree{ struct Tnode tree[MAXSIZE]; int length;}SequenceTree;int getCommonAncestor(int i,int j,
原创
发布博客 2020.07.14 ·
1418 阅读 ·
3 点赞 ·
0 评论 ·
11 收藏

输出整数出现次数

#include <iostream>using namespace std;struct node{ int num; int cnt;};int main(){ int n; cin>>n; int a[10]; struct node nums[11]; int k=-1; for(int i=0; i<n; ++i) { int data; bool .
原创
发布博客 2020.06.15 ·
207 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

1154 Vertex Coloring (25 分)

#include <iostream>#include <vector>#include <set>#define maxn 10001using namespace std;int m,n;bool visited[maxn]= {false};int color[maxn];vector<int>v[maxn];int f=0...
原创
发布博客 2019.05.31 ·
153 阅读 ·
2 点赞 ·
0 评论 ·
0 收藏

爬楼梯问题

#include <iostream>#include <cstring>using namespace std;const int maxn=101;int dp[maxn];int sum(int n){ if(n<=0) return 0 ; if(n==1) return 1; else...
原创
发布博客 2019.05.28 ·
155 阅读 ·
1 点赞 ·
0 评论 ·
0 收藏

7-36 社交网络图中结点的“重要性”计算 (30 分)

#include <iostream>#include <vector>#include <cstdio>#include <cstring>#define INF 0x3f3f3f#define maxn 10001using namespace std;int graph[maxn][maxn];int n,m;void in...
原创
发布博客 2019.05.23 ·
612 阅读 ·
1 点赞 ·
0 评论 ·
1 收藏

7-33 地下迷宫探索 (30 分)

#include <iostream>#include <vector>#include <algorithm>#define maxn 1001using namespace std;vector<int>v[maxn];vector<int>result;bool visited[maxn]= {false};int...
原创
发布博客 2019.05.23 ·
407 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

7-18 银行业务队列简单模拟 (25 分)

#include <iostream>#include <queue>#include <vector>using namespace std;queue<int>a;queue<int>b;int main(){ int n; cin>>n; for(int i=0;i<n...
原创
发布博客 2019.05.23 ·
1288 阅读 ·
1 点赞 ·
0 评论 ·
9 收藏
加载更多