#dsaincpp 搜索结果
🚀𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟲 Linked List Basics: 💠Deleting a Node in Linked List ✅ 💠Finding the Length of the Linked List (Traversal) ✅ 💠Searching an Element in Linked List ✅ #Programming #DSAinCPP #TUFWinterArc #60DaysOfCode #TechCommunity
𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟰 𝖲𝗍𝗋𝗂𝗇𝗀-𝗉𝗋𝗈𝖻𝗅𝖾𝗆𝗌: 💠𝖲𝗁𝗈𝗋𝗍𝖾𝗌𝗍 𝖯𝖺𝗅𝗂𝗇𝖽𝗋𝗈𝗆𝖾 ✅ 💠𝖫𝗈𝗇𝗀𝖾𝗌𝗍 𝖧𝖺𝗉𝗉𝗒 𝖯𝗋𝖾𝖿𝗂𝗑 ✅ #𝖯𝗋𝗈𝗀𝗋𝖺𝗆𝗆𝗂𝗇𝗀 #𝖣𝖲𝖠𝗂𝗇𝖢𝖯𝖯 #𝖳𝖴𝖥𝖶𝗂𝗇𝗍𝖾𝗋𝖠𝗋𝖼 #𝟨𝟢𝖣𝖺𝗒𝗌𝖮𝖿𝖢𝗈𝖽𝖾 #𝖳𝖾𝖼𝗁𝖢𝗈𝗆𝗆𝗎𝗇𝗂𝗍𝗒
Update on DSA: Did problem no. 852 on leet code Peak index in mountain array bala problem sikha .. Important note: dry running your code in your notebook by yourself is very important to fully understand how your code works 🙂 #DSA #CPP #DSAINCPP
🚀𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟱 String Problem: 💠Count Palindromic Subsequences in a String✅ Linked List Basics: 💠Introduction to Linked List✅ 💠Inserting a Node in Linked List✅ #𝖣𝖲𝖠𝗂𝗇𝖢𝖯𝖯 #𝖳𝖴𝖥𝖶𝗂𝗇𝗍𝖾𝗋𝖠𝗋𝖼 #𝟨𝟢𝖣𝖺𝗒𝗌𝖮𝖿𝖢ode
👉Day 18 of learning DSA in C++ journey with @rohit_negi9 Bhaiya ! 💡Today’s grind: Time & Space Complexity, Big O/Θ/Ω, and 10 real examples (O(1) → O(n²)) ⚡Time & Space Complexity took me way longer to grasp than any other topic so far #100DaysOfDSA #DSAinCPP #BigONotation…
🚀𝗦𝘁𝗮𝗿𝘁𝗶𝗻𝗴 60DaysOfCode - 𝗗𝗮𝘆 1 String-problems: 💠Sort Characters by Frequency ✅ 💠Maximum Nesting Depth of Parenthesis ✅ 💠Roman Number to Integer and vice versa ✅ 💠Implement Atoi ✅ 💠Count No. of Substrings ✅ @striver_79 @takeUforward_ #Programming #DSAinCPP
🚀𝗦𝘁𝗮𝗿𝘁𝗶𝗻𝗴 60DaysOfCode - 𝗗𝗮𝘆 3 String-problems: 💠Rabin Karp ✅ 💠Z-Function ✅ 💠KMP Algorithm / LPS (pi) Array ✅ #TUFWinterArc #Programming #DSAinCPP #60DaysOfCode #TechCommunity
✅ Completed 100 Lectures! 📚 DSA in C++ – Coder Army Learning step by step, from Stack to Dequeue. Still 63 lectures to go, but I'm proud of this progress. #CoderArmy #100LecturesDone #DSAinCPP #LearningJourney
#coding #DSAinCpp Day 15th of my coding journey today's lecture is amazing and little heavy but I am completed from DSA series by @ShradhaKhapra_ mam topic covered in this lecture is memory address, pointers, dereferencing and many more thanks to mam to provide quality content.
Day 24 of learning DSA in C++ ✅ Learnt Binary Search Algorithm — such a powerful tool! ✅ Solved Search in Rotated Sorted Array on LeetCode This one was really hard to understand at first, but I finally cracked it after 2 hours of thinking, trying, and learning! #DSAinCPP 🔥🚀
🔍 Next Greater Element — Solved using a monotonic stack for O(n) efficiency. This pattern shows up in countless problems. Understand it once, use it forever. Clean logic. Crisp code. #Stack #DSAinCPP #Leetcode #LearningJourney
I’m officially on the run. 100 Days of Code starts now. ☀️ DSA in C++ 🌙 Web Dev grind No hacks. No chill. Just me vs the compiler—daily. Let’s see how far I can pull it. #100DaysOfCode #DSAinCPP #WebDevJourney #GrindModeOn #CodeOrDieTrying
💠Hashing in Strings(Theory)✅ #Programming #DSAinCPP #TUFWinterArc #60DaysOfCode #TechCommunity
📉 Previous Smaller Element — Solved optimally in O(n) using a Monotonic Stack. A foundational pattern for problems like Histogram, Stack Span (in reverse), and more. 🔗LeetCode-style approach #MonotonicStack #Leetcode #DSAinCPP #LearningJourney
📊 Largest Rectangle in Histogram — A fundamental stack-based approach to find the maximum area in a histogram in O(n) time. Master this pattern—it’s the backbone of many monotonic stack problems. #Stack #Leetcode #DSAinCPP #LearningJourney
🧮Design a Min Stack — Support push, pop, top, and get Min in O(1) time. Elegant space-optimized approaches using auxiliary stacks or encoded values. 📌A LeetCode classic for mastering stack design. #MinStack #DSAinCPP #Leetcode #LearningJourney
Unfolded complexity in style 🧩 Solved Flatten a Doubly Linked List using recursion + pointer magic. Cleaned up nested chaos into a smooth linear structure. #Leetcode Question - 430 #DSAinCPP #LearningJourney #DoubleLinkedList
🔁 Next Greater Element II — Circular array twist on a classic! Leetcode 503 explores how to efficiently find the next greater element using a monotonic stack in O(n). Think beyond linear — simulate the circle smartly. #Leetcode #DSAinCPP #Stack #Queue #LearningJourney
Wrapped my head around pointer puzzles to solve Reverse Nodes in K-Group 💡 A tricky yet elegant Linked List challenge that teaches you precision and pattern in pointer manipulation. #Leetcode #LinkedList #DSAinCPP #LearningJourney
🚀𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟲 Linked List Basics: 💠Deleting a Node in Linked List ✅ 💠Finding the Length of the Linked List (Traversal) ✅ 💠Searching an Element in Linked List ✅ #Programming #DSAinCPP #TUFWinterArc #60DaysOfCode #TechCommunity
🚀𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟱 String Problem: 💠Count Palindromic Subsequences in a String✅ Linked List Basics: 💠Introduction to Linked List✅ 💠Inserting a Node in Linked List✅ #𝖣𝖲𝖠𝗂𝗇𝖢𝖯𝖯 #𝖳𝖴𝖥𝖶𝗂𝗇𝗍𝖾𝗋𝖠𝗋𝖼 #𝟨𝟢𝖣𝖺𝗒𝗌𝖮𝖿𝖢ode
𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟰 𝖲𝗍𝗋𝗂𝗇𝗀-𝗉𝗋𝗈𝖻𝗅𝖾𝗆𝗌: 💠𝖲𝗁𝗈𝗋𝗍𝖾𝗌𝗍 𝖯𝖺𝗅𝗂𝗇𝖽𝗋𝗈𝗆𝖾 ✅ 💠𝖫𝗈𝗇𝗀𝖾𝗌𝗍 𝖧𝖺𝗉𝗉𝗒 𝖯𝗋𝖾𝖿𝗂𝗑 ✅ #𝖯𝗋𝗈𝗀𝗋𝖺𝗆𝗆𝗂𝗇𝗀 #𝖣𝖲𝖠𝗂𝗇𝖢𝖯𝖯 #𝖳𝖴𝖥𝖶𝗂𝗇𝗍𝖾𝗋𝖠𝗋𝖼 #𝟨𝟢𝖣𝖺𝗒𝗌𝖮𝖿𝖢𝗈𝖽𝖾 #𝖳𝖾𝖼𝗁𝖢𝗈𝗆𝗆𝗎𝗇𝗂𝗍𝗒
🚀𝗦𝘁𝗮𝗿𝘁𝗶𝗻𝗴 60DaysOfCode - 𝗗𝗮𝘆 3 String-problems: 💠Rabin Karp ✅ 💠Z-Function ✅ 💠KMP Algorithm / LPS (pi) Array ✅ #TUFWinterArc #Programming #DSAinCPP #60DaysOfCode #TechCommunity
💠Hashing in Strings(Theory)✅ #Programming #DSAinCPP #TUFWinterArc #60DaysOfCode #TechCommunity
🚀𝗦𝘁𝗮𝗿𝘁𝗶𝗻𝗴 60DaysOfCode - 𝗗𝗮𝘆 1 String-problems: 💠Sort Characters by Frequency ✅ 💠Maximum Nesting Depth of Parenthesis ✅ 💠Roman Number to Integer and vice versa ✅ 💠Implement Atoi ✅ 💠Count No. of Substrings ✅ @striver_79 @takeUforward_ #Programming #DSAinCPP
👉Day 18 of learning DSA in C++ journey with @rohit_negi9 Bhaiya ! 💡Today’s grind: Time & Space Complexity, Big O/Θ/Ω, and 10 real examples (O(1) → O(n²)) ⚡Time & Space Complexity took me way longer to grasp than any other topic so far #100DaysOfDSA #DSAinCPP #BigONotation…
Update on DSA: Did problem no. 852 on leet code Peak index in mountain array bala problem sikha .. Important note: dry running your code in your notebook by yourself is very important to fully understand how your code works 🙂 #DSA #CPP #DSAINCPP
🔁 Next Greater Element II — Circular array twist on a classic! Leetcode 503 explores how to efficiently find the next greater element using a monotonic stack in O(n). Think beyond linear — simulate the circle smartly. #Leetcode #DSAinCPP #Stack #Queue #LearningJourney
📊 Largest Rectangle in Histogram — A fundamental stack-based approach to find the maximum area in a histogram in O(n) time. Master this pattern—it’s the backbone of many monotonic stack problems. #Stack #Leetcode #DSAinCPP #LearningJourney
🧮Design a Min Stack — Support push, pop, top, and get Min in O(1) time. Elegant space-optimized approaches using auxiliary stacks or encoded values. 📌A LeetCode classic for mastering stack design. #MinStack #DSAinCPP #Leetcode #LearningJourney
📉 Previous Smaller Element — Solved optimally in O(n) using a Monotonic Stack. A foundational pattern for problems like Histogram, Stack Span (in reverse), and more. 🔗LeetCode-style approach #MonotonicStack #Leetcode #DSAinCPP #LearningJourney
🔍 Next Greater Element — Solved using a monotonic stack for O(n) efficiency. This pattern shows up in countless problems. Understand it once, use it forever. Clean logic. Crisp code. #Stack #DSAinCPP #Leetcode #LearningJourney
📈 Cracked the Stock Span Problem with an optimal stack-based approach! Mastering such patterns not only sharpens problem-solving but builds real market intuition too. Every line of code counts. #StockSpan #DSAinCPP #Leetcode #Stack #LearningJourney
✅ Just tackled the Valid Parentheses problem using Stack – a classic for understanding balanced expressions & stack logic. Clean, structured, and a must-know! #DSAinCPP #Stack #LearningJourney
📚 Started with Stacks today – a powerful LIFO data structure with endless real-world use cases. From undo features to syntax parsing, it’s all stacked up here. #Stacks #DSAinCpp #LearningJourney
Tackled Swap Nodes in Pairs in Linked List today 🧠 A great hands-on with pointer logic and node manipulation. Clean swaps, cleaner logic. #LinkedList #DSAinCPP #LearningJourney
Wrapped my head around pointer puzzles to solve Reverse Nodes in K-Group 💡 A tricky yet elegant Linked List challenge that teaches you precision and pattern in pointer manipulation. #Leetcode #LinkedList #DSAinCPP #LearningJourney
Unfolded complexity in style 🧩 Solved Flatten a Doubly Linked List using recursion + pointer magic. Cleaned up nested chaos into a smooth linear structure. #Leetcode Question - 430 #DSAinCPP #LearningJourney #DoubleLinkedList
Tackled Flatten a Doubly Linked List today 🔗🧠Unfolded nested structures into a single linear, doubly linked list using recursion and careful pointer manipulation. A great exercise in mastering linked list traversal! #Leetcode430 #DSAinCPP #DoubleLinkedList #LearningJourney
👉Day 18 of learning DSA in C++ journey with @rohit_negi9 Bhaiya ! 💡Today’s grind: Time & Space Complexity, Big O/Θ/Ω, and 10 real examples (O(1) → O(n²)) ⚡Time & Space Complexity took me way longer to grasp than any other topic so far #100DaysOfDSA #DSAinCPP #BigONotation…
Update on DSA: Did problem no. 852 on leet code Peak index in mountain array bala problem sikha .. Important note: dry running your code in your notebook by yourself is very important to fully understand how your code works 🙂 #DSA #CPP #DSAINCPP
𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟰 𝖲𝗍𝗋𝗂𝗇𝗀-𝗉𝗋𝗈𝖻𝗅𝖾𝗆𝗌: 💠𝖲𝗁𝗈𝗋𝗍𝖾𝗌𝗍 𝖯𝖺𝗅𝗂𝗇𝖽𝗋𝗈𝗆𝖾 ✅ 💠𝖫𝗈𝗇𝗀𝖾𝗌𝗍 𝖧𝖺𝗉𝗉𝗒 𝖯𝗋𝖾𝖿𝗂𝗑 ✅ #𝖯𝗋𝗈𝗀𝗋𝖺𝗆𝗆𝗂𝗇𝗀 #𝖣𝖲𝖠𝗂𝗇𝖢𝖯𝖯 #𝖳𝖴𝖥𝖶𝗂𝗇𝗍𝖾𝗋𝖠𝗋𝖼 #𝟨𝟢𝖣𝖺𝗒𝗌𝖮𝖿𝖢𝗈𝖽𝖾 #𝖳𝖾𝖼𝗁𝖢𝗈𝗆𝗆𝗎𝗇𝗂𝗍𝗒
🚀𝗦𝘁𝗮𝗿𝘁𝗶𝗻𝗴 60DaysOfCode - 𝗗𝗮𝘆 1 String-problems: 💠Sort Characters by Frequency ✅ 💠Maximum Nesting Depth of Parenthesis ✅ 💠Roman Number to Integer and vice versa ✅ 💠Implement Atoi ✅ 💠Count No. of Substrings ✅ @striver_79 @takeUforward_ #Programming #DSAinCPP
🚀𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟲 Linked List Basics: 💠Deleting a Node in Linked List ✅ 💠Finding the Length of the Linked List (Traversal) ✅ 💠Searching an Element in Linked List ✅ #Programming #DSAinCPP #TUFWinterArc #60DaysOfCode #TechCommunity
✅ Completed 100 Lectures! 📚 DSA in C++ – Coder Army Learning step by step, from Stack to Dequeue. Still 63 lectures to go, but I'm proud of this progress. #CoderArmy #100LecturesDone #DSAinCPP #LearningJourney
🚀𝟲𝟬𝗗𝗮𝘆𝘀𝗢𝗳𝗖𝗼𝗱𝗲 - 𝗗𝗮𝘆 𝟱 String Problem: 💠Count Palindromic Subsequences in a String✅ Linked List Basics: 💠Introduction to Linked List✅ 💠Inserting a Node in Linked List✅ #𝖣𝖲𝖠𝗂𝗇𝖢𝖯𝖯 #𝖳𝖴𝖥𝖶𝗂𝗇𝗍𝖾𝗋𝖠𝗋𝖼 #𝟨𝟢𝖣𝖺𝗒𝗌𝖮𝖿𝖢ode
🚀𝗦𝘁𝗮𝗿𝘁𝗶𝗻𝗴 60DaysOfCode - 𝗗𝗮𝘆 3 String-problems: 💠Rabin Karp ✅ 💠Z-Function ✅ 💠KMP Algorithm / LPS (pi) Array ✅ #TUFWinterArc #Programming #DSAinCPP #60DaysOfCode #TechCommunity
#coding #DSAinCpp Day 15th of my coding journey today's lecture is amazing and little heavy but I am completed from DSA series by @ShradhaKhapra_ mam topic covered in this lecture is memory address, pointers, dereferencing and many more thanks to mam to provide quality content.
🔥 Kadane's Algorithm—the ultimate hack for finding the Maximum Subarray Sum! 🧠 Mastered this game-changing approach in @ShradhaKhapra_ Ma'am's DSA Series. Simplifying complex problems, one lecture at a time. 💻✨ #DSAinCPP #LearningJourney #Array
Something went wrong.
Something went wrong.
United States Trends
- 1. Grammy 452K posts
- 2. Vesia 3,798 posts
- 3. Dizzy 11.4K posts
- 4. #FliffCashFriday 2,520 posts
- 5. Darryn Peterson 1,072 posts
- 6. Georgetown 2,385 posts
- 7. #drwfirstgoal N/A
- 8. Kansas 22K posts
- 9. Caleb Wilson N/A
- 10. James Watson 13.1K posts
- 11. Silver Slugger 11.5K posts
- 12. Thank a Republican 1,397 posts
- 13. NBA Cup 5,751 posts
- 14. Capitol Police 16.3K posts
- 15. Jaland Lowe N/A
- 16. Collar 14.7K posts
- 17. Myles Rice N/A
- 18. Dylan Edwards N/A
- 19. #kubball N/A
- 20. #cthsfb N/A