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;
    }
     
  • 相关阅读:
    【转】Java抽象类与接口的区别
    【转】java方法参数传递方式--按值传递、引用传递
    关联mysql失败_Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon'
    分词器的安装与使用
    Mysql、ES 数据同步
    ES、kibana安装及交互操作
    tl-wr742n 怎么设置dns
    tl-wr742n无线路由器怎么设置
    PowerMock学习(十一)之Mock private methods的使用
    PowerMock学习(十)之Mock spy的使用
  • 原文地址:https://www.cnblogs.com/zhanghaijie/p/10329759.html
Copyright © 2011-2022 走看看