logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

数据结构哈希表的建立和查找数据

#include <stdio.h>#include <string.h>#include <stdlib.h>#include <conio.h>#define NUM 5typedef struct hash {int num;//哈希表多少个值char* data;//data的指针}hash;hash* init() {hash* L = (

#数据结构#c语言
Qt linedeit中数据的读取和计算

Qt linedeit中数据的读取和计算。

#qt#ui#开发语言
C++ list

list构造#include <iostream>#include <string>#include <list>//链表容器//STL是双向循环链表using namespace std;void show(list <int> l1) {for (auto a : l1)cout << a << " ";cout <

#c++#list#链表
到底了