Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб Generate All Strings With n Matched Parentheses - Backtracking ("Generate Parentheses" on LeetCode) в хорошем качестве

Generate All Strings With n Matched Parentheses - Backtracking ("Generate Parentheses" on LeetCode) 5 лет назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



Generate All Strings With n Matched Parentheses - Backtracking ("Generate Parentheses" on LeetCode)

Free 5-Day Mini-Course: https://backtobackswe.com Try Our Full Platform: https://backtobackswe.com/pricing 📹 Intuitive Video Explanations 🏃 Run Code As You Learn 💾 Save Progress ❓New Unseen Questions 🔎 Get All Solutions Question: Write a program that takes as input a number n in and returns all the strings with n matched pairs of parens. Examples: n = 1 [ "()" ] n = 2 [ "(())", "()()" ] n = 3 [ "((()))","(()())","(())()","()(())","()()()" ] Approach 1 (Brute Force Then Validate) Generate all (2 ^ (2n)) possible parenthese strings and then validate each for being balanced. If n = 2 then the string length will be 2 times that since all open parentheses are matched by closed parentheses. This lower bounds our time complexity. Even if we restrict the enumeration to just sets with an equal number of left and right parentheses we will have choose(2k, k) strings to consider for validation. Approach 2 (Directed Backtracking) The 3 Keys To Backtracking Our Choice: Whether we place a left or right paren at a certain decision point in our recursion. Our Constraints: We can't place a right paren unless we have left parens to match against. Our Goal: Place all k left and all k right parens. The Key At each point of constructing the string of length 2k we make a choice. We can place a "(" and recurse or we can place a ")" and recurse. But we can't just do that placement, we need 2 critical pieces of information. The amount of left parens left to place. The amount of right parens left to place. We have 2 critical rules at each placement step. We can place a left parentheses if we have more than 0 left to place. We can only place a right parentheses if there are left parentheses that we can match against. We know this is the case when we have less left parentheses to place than right parentheses to place. Once we establish these constraints on our branching we know that when we have 0 of both parens to place that we are done, we have an answer in our base case. ++++++++++++++++++++++++++++++++++++++++++++++++++ HackerRank:    / @hackerrankofficial   Tuschar Roy:    / tusharroy2525   GeeksForGeeks:    / @geeksforgeeksvideos   Jarvis Johnson:    / vsympathyv   Success In Tech:    / @successintech   ++++++++++++++++++++++++++++++++++++++++++++++++++ This question is number 16.6 in "Elements of Programming Interviews" by Adnan Aziz, Tsung-Hsien Lee, and Amit Prakash.

Comments