摘要: #include <stdio.h> #define MAXTABLESIZE 100000 /* 允许开辟的最大散列表长度 */typedef int ElementType; /* 关键词类型用整型 */typedef int Index; /* 散列地址类型 */typedef Index P 阅读全文
posted @ 2023-12-14 23:13 涨涨涨张 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<vector>#define _CRT_SECURE_NO_WARNINGS 1using namespace std;int main(){ int n,p; //scanf("%d%d",&n,&p); cin>>n>>p; vector<i 阅读全文
posted @ 2023-12-14 20:29 涨涨涨张 阅读(5) 评论(0) 推荐(0) 编辑