#linkedlist hasil pencarian
🚀 Day 95 of #100DaysOfDSA Started learning Doubly Linked List today! 🔗 ✔️ Understanding prev & next pointers ✔️ Traversal in both directions ✔️ Insertions & deletions made easier Excited to dive deeper! 😄 #DSA #LinkedList #DoublyLinkedList #CodingJourney #100DaysOfCode 🚀
🗓️Day 81 of #100DaysOfDSA Explored Doubly Linked Lists & solved 3 problems: 1️⃣ Delete all occurrences of a key ▪️O(n) time & O(1) space 2️⃣ Find pairs with given sum ▪️O(2n) time & O(n) space 3️⃣ Remove duplicates ▪️O(n) time & O(1) space #DSA #LinkedList #connect #grow #viral
✅23/100 Finally cracked "Palindrome Linked List"! 😎 It's so satisfying to move beyond the easy array conversion to the elegant in-place reversal method. All thanks to @akshaymarch7 🙏 What's your favorite DSA topic to get lost in? 👇 #DSA #LinkedList #Optimization #BigO
🚀 Day 85 of #100DaysOfDSA 🚀 Learned Insertion & Deletion in Linked List 🔹 Insertion: Add new nodes at head, tail, or any position. 🔹 Deletion: Update pointers to remove nodes safely. #DSA #LinkedList #CodingJourney #100DaysOfCode #ProblemSolving 🚀
✅Day9 of #100DaysOfCode Learn about further types of Linked List: Doubly Linked List and Circular Linked List, and solve a Question on it.✨ Also, I am starting a new Project (Smart Contact Manager) based on Spring Boot Framework.🌱 #Java #LinkedList #DSA #LearnInPublic
🚀 Day 84 of #100DaysOfDSA 🚀 Started Linked List today! 🔗 Learned what it is, why it’s non-contiguous, and when to use it. ✨ Key Insight: Great for dynamic size & frequent insert/delete ops. #DSA #LinkedList #100DaysOfCode #CodingJourney 🚀
✅ Today, 13 Nov 2025 💎 Learned DLL & Circular LL 🔁 💎 Found middle of LL (slow–fast pointer) ⚡ 💎 Reversed LL & solved Zigzag LL 🔄 💎 Learned loop detection & removal (Floyd’s algo) 🧠 #100DaysOfCode #DSA #LinkedList #LeetCode #CodingJourney
Day 31 of my #100DaysOfCode challenge!🚀 ✅Problem no. ->237,1757,584 #LeetCode #linkedlist #MySQL ✅Explored some AI Tools ->Notebook LM ->Coddy.tech ->warp.dev ->Napkin AI ->Gamma AI ->Replit #buildinpublic #developing #DevCommunity
🗓️ Day 79 of #100DaysOfDSA Solved LC 160 - Intersection of Two Linked Lists ▪️Brute Force: O((n₁+n₂) * log n) time & O(n) space ▪️Better: O(n₁+2n₂) time & O(1) space ▪️Optimized: O(n₁+n₂) time & O(1) space #DSA #LinkedList #LeetCode #ProblemSolving #learningtoearning
✅26/100 Just wrapped up "Odd Even Linked List" 🚀 Rearranging all those nodes in-place without breaking the chain was a fun challenge to cap off the week. As always, @akshaymarch7's explanation was super clear and made it all click. #DSA #LinkedList #LearnInPublic
✅ Day8 of #100DaysOfCode How to find mid point of LL and Learn about four different ways to print Linked List in reverse order!! #Java #LinkedList #DSA #LearnInPublic
Solved: “Convert Binary Number in a Linked List to Integer” 🔢 🧠 Used a simple traversal: res = res * 2 + node->val to convert binary to decimal. Fast, clean, and C++ efficient! #LeetCode #LinkedList #Cplusplus #DSA #100DaysOfCode #TechTwitter
Day 14 of #TUFWinterArc ❄🔥 Linked List grind continues 💪 Solved some medium-level problems today: ➕ Add One to Number (LL) 🧩 Find & Delete Middle Node 🔁 Check if Linked List is Palindrome Leveling up with pointers and edge cases 🧠 @takeUforward #DSA #LinkedList
Day 12: Started Linked List problems — learning how pointers, traversal, and edge cases change entirely compared to arrays. Great topic to build deeper logic! #DSA #Day12 #LinkedList #StriversSheet
🚀 Day 95 of #100DaysOfDSA Started learning Doubly Linked List today! 🔗 ✔️ Understanding prev & next pointers ✔️ Traversal in both directions ✔️ Insertions & deletions made easier Excited to dive deeper! 😄 #DSA #LinkedList #DoublyLinkedList #CodingJourney #100DaysOfCode 🚀
✅ Today, 13 Nov 2025 💎 Learned DLL & Circular LL 🔁 💎 Found middle of LL (slow–fast pointer) ⚡ 💎 Reversed LL & solved Zigzag LL 🔄 💎 Learned loop detection & removal (Floyd’s algo) 🧠 #100DaysOfCode #DSA #LinkedList #LeetCode #CodingJourney
✅ Today, 12 Nov 2025 💎 Learned the slow & fast pointer technique — helps in finding the middle of a Linked List efficiently ⚡ 💎 Used it to check if a Linked List is a palindrome 🧩 💎 Solved Delete Nth Node from End problem 💪 #100DaysOfCode #DataStructures #LinkedList
876. Middle of the Linked List #100daysofcode #linkedlist #java #LeetCode Code- pastebin.com/5bEm87iL
Day 05/100 – DSA Streak 🚀 Even with exams stealing my hours, I still learned Linked Lists today. Slow pace, but steady steps count too. 💡 #100DaysOfCode #DSA #LinkedList
#Day405 of #500DaysOfDSA Topics and Learnings: #LinkedList Problems Revised: 25. #TUF+ : Deletion of the Head of LL Approach: Pointed Head to next of head Complexiy Analysis: TC: O(1) SC: O(1)
Day 11 of #100DaysOfCode Started learning deletion operations in Linked List - • Delete the first node • Delete in between nodes • Delete the last node • Delete by a given key Pointers are finally starting to make real sense! #DSA #LinkedList #CodingJourney #LearnToCode
Today, I solved the problem "24. Swap Nodes in Pairs" on LeetCode using Go! #LinkedList Happy LeetCoding!
#Day404 of #500DaysOfDSA Topics and Learnings: #LinkedList Problems Re-revised: 24. #LeetCode #237: Delete Node In A LinkedList Approach: Copied value of next node in given node Pointed next of given node to next to next node Complexiy Analysis: TC: O(1) SC: O(1)
Building a Dynamic Linked List Project Using React & Tailwind CSS #React #TailwindCSS #LinkedList #DataStructures #JavaScript
✅23/100 Finally cracked "Palindrome Linked List"! 😎 It's so satisfying to move beyond the easy array conversion to the elegant in-place reversal method. All thanks to @akshaymarch7 🙏 What's your favorite DSA topic to get lost in? 👇 #DSA #LinkedList #Optimization #BigO
🚀 Day 85 of #100DaysOfDSA 🚀 Learned Insertion & Deletion in Linked List 🔹 Insertion: Add new nodes at head, tail, or any position. 🔹 Deletion: Update pointers to remove nodes safely. #DSA #LinkedList #CodingJourney #100DaysOfCode #ProblemSolving 🚀
🚀 Day 95 of #100DaysOfDSA Started learning Doubly Linked List today! 🔗 ✔️ Understanding prev & next pointers ✔️ Traversal in both directions ✔️ Insertions & deletions made easier Excited to dive deeper! 😄 #DSA #LinkedList #DoublyLinkedList #CodingJourney #100DaysOfCode 🚀
🗓️Day 81 of #100DaysOfDSA Explored Doubly Linked Lists & solved 3 problems: 1️⃣ Delete all occurrences of a key ▪️O(n) time & O(1) space 2️⃣ Find pairs with given sum ▪️O(2n) time & O(n) space 3️⃣ Remove duplicates ▪️O(n) time & O(1) space #DSA #LinkedList #connect #grow #viral
✅ Today, 13 Nov 2025 💎 Learned DLL & Circular LL 🔁 💎 Found middle of LL (slow–fast pointer) ⚡ 💎 Reversed LL & solved Zigzag LL 🔄 💎 Learned loop detection & removal (Floyd’s algo) 🧠 #100DaysOfCode #DSA #LinkedList #LeetCode #CodingJourney
✅Day9 of #100DaysOfCode Learn about further types of Linked List: Doubly Linked List and Circular Linked List, and solve a Question on it.✨ Also, I am starting a new Project (Smart Contact Manager) based on Spring Boot Framework.🌱 #Java #LinkedList #DSA #LearnInPublic
🚀 Day 84 of #100DaysOfDSA 🚀 Started Linked List today! 🔗 Learned what it is, why it’s non-contiguous, and when to use it. ✨ Key Insight: Great for dynamic size & frequent insert/delete ops. #DSA #LinkedList #100DaysOfCode #CodingJourney 🚀
✅ Day 71 of #100DaysOfCode 😮💨 Aj ke liye bas itna hi... kal milte hai naye sawalo ke sath! 🚀 #DSA #LinkedList #CodingDiaries
Day 31 of my #100DaysOfCode challenge!🚀 ✅Problem no. ->237,1757,584 #LeetCode #linkedlist #MySQL ✅Explored some AI Tools ->Notebook LM ->Coddy.tech ->warp.dev ->Napkin AI ->Gamma AI ->Replit #buildinpublic #developing #DevCommunity
✅ Solved 19. Remove Nth Node From End of List using the one-pass approach! Mastered the use of two pointers to efficiently handle node deletion from the end. 🧠📌 #DSA #LinkedList #LeetCode #TwoPointerTechnique #ProblemSolving @ChaiCodeHQ @PrateekJain027 @Hiteshdotcom
✅26/100 Just wrapped up "Odd Even Linked List" 🚀 Rearranging all those nodes in-place without breaking the chain was a fun challenge to cap off the week. As always, @akshaymarch7's explanation was super clear and made it all click. #DSA #LinkedList #LearnInPublic
🚀Day 46/100: Mastering Linked List Manipulations – One Node at a Time! 61. Rotate List 142. Linked List Cycle II #100DaysOfCode #DataStructures #LinkedList #CodingChallenge #JavaProgramming #TechWithManohar #SoftwareEngineering #ProblemSolving #DSAinJava #FloydCycleDetection
Day 128 – LeetCode 23 ✅ Merge K Sorted Lists (Hard) Used min-heap to merge all lists in O(N log k) time. #LeetCode #Heap #LinkedList #C++
🗓️ Day 79 of #100DaysOfDSA Solved LC 160 - Intersection of Two Linked Lists ▪️Brute Force: O((n₁+n₂) * log n) time & O(n) space ▪️Better: O(n₁+2n₂) time & O(1) space ▪️Optimized: O(n₁+n₂) time & O(1) space #DSA #LinkedList #LeetCode #ProblemSolving #learningtoearning
🚀Day 44 of #100DaysOfCoding Every line of code brings me closer to mastery. Learning, building, and growing—one day at a time. 2. Add Two Numbers 92. Reverse Linked List II #LinkedList #JavaProgramming #DataStructures #CodingChallenge #LeetCode #ProblemSolving #TechJourney
🚀 Day 50/100: Halfway There! Crushing Code & Staying Consistent 86. Partition List 147. Insertion Sort List #100DaysOfCode #Day50 #LinkedList #InsertionSort #JavaProgramming #LeetCodeChallenge #DSAWithJava #TechWithManohar #CodingJourney #BuildInPublic #connect #FutureTowork
Something went wrong.
Something went wrong.
United States Trends
- 1. #UFC322 39.8K posts
- 2. Ewing 5,951 posts
- 3. Bama 19.1K posts
- 4. Wellmaker 4,226 posts
- 5. Oklahoma 29.7K posts
- 6. Noah Thomas N/A
- 7. Arch 18.3K posts
- 8. #AEWCollision 5,378 posts
- 9. James Peoples N/A
- 10. Wingo 1,393 posts
- 11. Tracy Cortez 1,484 posts
- 12. Jeremiah Smith 2,163 posts
- 13. Ty Simpson 3,853 posts
- 14. Bronny 5,294 posts
- 15. Boomer Sooner 2,231 posts
- 16. Georgia 74.9K posts
- 17. #GoDawgs 5,215 posts
- 18. Erin Blanchfield N/A
- 19. Shapen N/A
- 20. UConn 4,738 posts