文章列表

筛选

哈弗曼树的创建

摘要:#icnlude<iostream>using namespace std;//每次都从权值中重新挑选最小的两位 typedef&am……

1023[编程入门]选择排序 这两种方法哪个好?

摘要:1023  [编程入门]选择排序目前知道两种方法。一种是交换数组元素,一种是选择数组元素。本质上都是实现的数组元素交换。但是第二种方法数组元素只交换了10次。是第二……

使用C++和Qt写的连连看小游戏

摘要:游戏运行截图![](/image_editor_upload/20240515/20240515031304_76901.png)基本的连连看游戏系统完整。百度网盘提取链接:链接:https://pa……

线性表顺序表

摘要:#include<iostream>using namespace std;#define  MAXSIZE&amp……

两个链表合并

摘要:#include <stdio.h>typedef struct LNode{ int data;……

两个链表合成2

摘要:#include<stdio.h>typedefstructLNode{ intdata; structLNode*next;}LNode,*linkL……

快速排序111

摘要:#include<iostream>usingnamespacestd;voidqicksort(inta[],intl,intr){if(l>=r)return;inti=l-1;……

归并排序222

摘要:#include<iostream>using namespace std;int term[100];void m……

链表的基础操作

摘要:#include/*链表头结点内容为空*//*链表为顺序存取:从头指针一次按顺序找*/ typedef struct LNode{int&……