摘要:
#include <stdio.h> #define MAXTABLESIZE 100000 /* 允许开辟的最大散列表长度 */typedef int ElementType; /* 关键词类型用整型 */typedef int Index; /* 散列地址类型 */typedef Index P 阅读全文
摘要:
#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 阅读全文