Java Integer Hash intHash(int number, int max)

Here you can find the source of intHash(int number, int max)

Description

int Hash

License

Open Source License

Declaration

public static int intHash(int number, int max) 

Method Source Code

//package com.java2s;
/**//  w ww  .  j  av a  2 s .  com
 * Copyright 2017-2019 The GreyCat Authors.  All rights reserved.
 * <p>
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p>
 * http://www.apache.org/licenses/LICENSE-2.0
 * <p>
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static int intHash(int number, int max) {
        int hash = number % max;
        return hash < 0 ? hash * -1 : hash;
    }
}

Related

  1. intHash(final long a)
  2. intHash(int i)
  3. intHash(int input)
  4. intHash(int key)
  5. intHash(long a)
  6. intHashCode(final int value)
  7. intHashCode(int i)
  8. intHashToLong(int hash)