Java Murmur Hash murmurHash3(int k)

Here you can find the source of murmurHash3(int k)

Description

murmur Hash

License

Apache License

Declaration

public static int murmurHash3(int k) 

Method Source Code

//package com.java2s;
/*/*from  w  w  w . j a v  a2  s  .co m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * 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 murmurHash3(int k) {
        k ^= k >>> 16;
        k *= 0x85ebca6b;
        k ^= k >>> 13;
        k *= 0xc2b2ae35;
        k ^= k >>> 16;
        return k;
    }
}

Related

  1. murmur2(int value, int salt)
  2. murmur3fmix(int value)
  3. murmurHash(byte[] data, int offset, int length)
  4. murmurHash(int code)
  5. murmurhash2_64(final byte[] data, int length, int seed)
  6. murmurHash3(int x)
  7. murmurHash3(int x)
  8. MurmurHash3_fmix(int k)
  9. murmurhash3x8632(byte[] data, int offset, int len, int seed)