Created
April 15, 2017 15:33
-
-
Save hrishikesh-mishra/fa14f1d3b7015747a2d197b9c4882e6f to your computer and use it in GitHub Desktop.
Range Maximum Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.hrishikesh.practices.dynamicprogramming; | |
import java.util.Arrays; | |
import static com.hrishikesh.practices.dynamicprogramming.RangeMaximumQuery.buildDPTable; | |
/** | |
* Problem | |
* Range Maximum Query | |
* | |
* @author hrishikesh.mishra | |
*/ | |
public class RangeMaximumQuery { | |
public static void buildDPTable(int[] array) { | |
int[][] table = new int[array.length][array.length]; | |
for (int i = 0; i < array.length; i++) { | |
table[i][i] = array[i]; | |
for (int j = i + 1; j < array.length; j++) { | |
table[i][j] = Math.max(table[i][j - 1], array[j]); | |
} | |
} | |
for (int i = 0; i < array.length; i++) { | |
System.out.println(Arrays.toString(table[i])); | |
} | |
} | |
} | |
class RangeMaximumQueryTest { | |
public static void main(String[] args) { | |
int[] array = {4, 6, 1, 5, 7, 3}; | |
System.out.println("Array: " + Arrays.toString(array)); | |
System.out.println("DP : "); | |
buildDPTable(array); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment