trekhleb / javascript-algorithms

📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
MIT License
185.03k stars 29.84k forks source link

Add Binary Search algorithm for finding Longest Increasing Subsequence #1050

Open AbdulShaikz opened 12 months ago

AbdulShaikz commented 12 months ago

Implemented a binary search-based approach to find the longest increasing subsequence in an array.