Java Hash Code Calculate hashCode(char[] array, int start, int end)

Here you can find the source of hashCode(char[] array, int start, int end)

Description

Returns hash of chars in range start (inclusive) to end (inclusive)

License

Apache License

Declaration

public static int hashCode(char[] array, int start, int end) 

Method Source Code

//package com.java2s;
/*/*  w  ww .  ja va  2 s  . c  om*/
 * 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 {
    /**
     * Returns hash of chars in range start (inclusive) to
     * end (inclusive)
     */
    public static int hashCode(char[] array, int start, int end) {
        int code = 0;
        for (int i = end - 1; i >= start; i--)
            code = code * 31 + array[i];
        return code;
    }
}

Related

  1. hashCode(byte[] bytes, int offset, int length)
  2. hashCode(byte[] bytes, int size)
  3. hashCode(byte[] data, int offset, int len, int seed)
  4. hashCode(char[] array)
  5. hashCode(char[] array, int start, int end)
  6. hashCode(CharSequence seq)
  7. hashCode(double dbl)
  8. hashCode(double v)
  9. hashCode(double val)