程序员
我是一只猴子
我喜欢蒲公英
展开
-
NoClassDefFoundErrorcom/ververica/cdc/connectors/shaded/org/apache/commons/collections/map/LinkedMap
参考解决办法:https://github.com/apache/flink-cdc/pull/2501。同步异常:未找到是那个地方shading(阴影化)处理,导致类的实际路径发生了变化.原创 2024-10-22 22:39:30 · 218 阅读 · 0 评论 -
数据结构十大内排序
#include<iostream>void baseSort(int arr[], int len); // 基数排序 void baseCountSort(int arr[],int divide,int len);void countSort(int arr[], int len); // 计数排序void heapSort(int arr[],int len); //堆排序void makeHeap(int arr[],int len);void heapify(int原创 2021-08-05 11:03:50 · 112 阅读 · 0 评论 -
vscode/eclipse格式化代码
原创 2021-06-10 15:45:41 · 237 阅读 · 0 评论 -
原生JS实现右键弹出自定义的菜单
css样式文件:css/onclick.css.mydiv { margin: 20px auto; width: 400px; height: 300px; background-color: rgb(170, 238, 232); position: relative;}.myul { width: 80px; height: 150px; position: absolute; display: none;}.box原创 2021-06-10 15:41:37 · 1003 阅读 · 0 评论 -
1.给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的 任意个数之和 等于 target,并打印出所有结果的索引,索引不能重复。
/* 做的一家公司笔试题,两数之和解决,N数之和想了半天,最终参考了别人的思路,收货不错 参考地址:https://blog.csdn.net/dengz_j/article/details/114540948?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522161832685216780264062836%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fall.%2522原创 2021-04-14 11:13:30 · 2462 阅读 · 4 评论 -
IDEA如何进入激活页面
IDEA如何进入激活页面原创 2021-03-17 10:55:29 · 25018 阅读 · 1 评论 -
二叉排序树(BST),二叉搜索树(创建、删除、查询)
#include<iostream>#include<stdlib.h>using namespace std;/* 二叉排序树 1、若根节点的左子树非空,则左子树上的所有结点关键字均小于根节点关键字 2、若根节点的右子树非空,则右子树上的所有结点关键字均大于根节点关键字 */typedef struct node{ int data;//数据 struct node *lchild,*rchild;//定义左右孩子指针 }BSTNode;//二叉排序树原创 2020-11-19 21:51:20 · 341 阅读 · 0 评论 -
线性表的链式存储(单链表)
#include#include<stdlib.h>using namespace std;typedef struct LNode{int data;//数据元素struct LNode *next; //指向后续结点}LinkNode;//线性表 -————单链表int main(){//函数声明void GreateListF(LinkNode *&L,int a[],int n);//头插法,输入输出是相反的void GreateListR(LinkNode原创 2020-10-26 15:43:53 · 322 阅读 · 0 评论 -
线性表的顺序结构
运行环境:devcpp编写语言:C++线性表的顺序结构算法操作#includeusing namespace std;#define MaxSize 20typedef struct{int data[MaxSize];int length;}Sqlist; //线性表的逻辑元素是从1开始/** 指针(有单独的存储空间)存储的是地址 ,初始可以为:NULL* 引用(引用变量本身没有自己的实际存储空间,跟引用的对象共享同一块存储地址,初始不可以为:NULL )SqList *L和原创 2020-10-23 21:51:19 · 137 阅读 · 0 评论