zoukankan      html  css  js  c++  java
  • 1078 Hashing (25 分)

    1078 Hashing (25 分)

    The task of this problem is simple: insert a sequence of distinct positive integers into a hash table, and output the positions of the input numbers. The hash function is defined to be H(key)=key%TSize where TSize is the maximum size of the hash table. Quadratic probing (with positive increments only) is used to solve the collisions.

    Note that the table size is better to be prime. If the maximum size given by the user is not prime, you must re-define the table size to be the smallest prime number which is larger than the size given by the user.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains two positive numbers: MSize (104​​) and N (MSize) which are the user-defined table size and the number of input numbers, respectively. Then N distinct positive integers are given in the next line. All the numbers in a line are separated by a space.

    Output Specification:

    For each test case, print the corresponding positions (index starts from 0) of the input numbers in one line. All the numbers in a line are separated by a space, and there must be no extra space at the end of the line. In case it is impossible to insert the number, print "-" instead.

    Sample Input:

    4 4
    10 6 4 15
    

    Sample Output:

    0 1 4 -
    思路:
      
    #include<iostream>
    #include<vector>
    #include<algorithm>
    #include<queue>
    #include<string>
    #include<map>
    #include<set>
    #include<stack>
    #include<string.h>
    #include<cstdio>
    #include <unordered_map>
    #include<cmath>
    
    using namespace std;
    int findPrim(int mSize)
    {
        for(int num=mSize;;num++)
        {
            bool flag=true;
            if(num==1)
                continue;
            for(int i=2;i<=sqrt(num);i++)
            {
                if(num%i==0)
                    flag=false;
            }
            if(flag)
            {
                return num;
            }
        }
    }
    
    int main()
    {
        int mSize,n;
        scanf("%d%d",&mSize,&n);
        int len=findPrim(mSize>n?mSize:n);
        int a[len];
        //cout<<len<<endl;
        fill(a,a+len,-1);
        vector<int>result;
        for(int i=0;i<n;i++)
        {
            int key;
            scanf("%d",&key);
            int step;
            for(step=0;step<len;step++)
            {
                int index=(key+step*step)%len;
                if(a[index]==-1)
                {
                    a[index]=key;
                    result.push_back(index);
                    break;
                }
            }
            if(step==len)
            {
                result.push_back(-1);
            }
        }
        if(result[0]==-1)
            printf("-");
        else
            printf("%d",result[0]);
        for(int i=1;i<result.size();i++)
        {
            if(result[i]==-1)
                printf(" -");
            else
               printf(" %d",result[i]);
        }
        printf("
    ");
        return 0;
    }
     
  • 相关阅读:
    springboot 前后端分离开发 从零到整(三、登录以及登录状态的持续)
    鼠标跟随
    sublime_text编辑器下载安装使用
    实现el-dialog的拖拽,全屏,缩小功能
    vue 动态添加路由 require.context()
    Vue JsonView 树形格式化代码插件
    利用vue-gird-layout 制作可定制桌面 (二)
    利用vue-gird-layout 制作可定制桌面 (一)
    通过js 实现 向页面插入js代码并生效,和页面postMessage通讯
    简单实现一个ES5 Vue Dialog 插件
  • 原文地址:https://www.cnblogs.com/zhanghaijie/p/10329759.html
Copyright © 2011-2022 走看看