Back to Browse

Programming Interview Question: Longest Increasing Subsequence nlogn

62.8K views
Jul 25, 2015
8:54

Given an array of integers, find the longest increasing subsequence in O(nlogn) time Example:- {3,1,5,2,6,4,9} Answer:- {1,2,4,9} Source code: - https://github.com/IDeserve/learn/blob/master/LongestIncreasingSubsequence.java Longest Increasing Subsequence Algorithm is explained with examples and visualizations. Website: http://www.ideserve.co.in Facebook: https://www.facebook.com/IDeserve.co.in

Download

1 formats

Video Formats

360pmp411.4 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

Programming Interview Question: Longest Increasing Subsequence nlogn | NatokHD