Filter
Exclude
Time range
-
Near
28 Dec 2025
Lecture 12 of STRIKE DSA Covered space complexity and sorting algorithms: β€’ Extra space matters as much as time β€’ Selection Sort: simple approach, fixed numbers of comparison Instructor - @rohit_negi9 sir #DSA #Sorting #SelectionSort #SpaceComplexity #ComputerScience
1
5
116
Selection Sort works by repeatedly finding the smallest element and placing it at the correct position. Simple, visual, and perfect for beginners! πŸš€ Follow @codecraftzone for more clean DSA explanations! #selectionsort #sortingalgorithm #dsa #datastructures #coding
2
2
19
Selection Sort Selection Sort is a simple, in-place, comparison-based sorting algorithm used in data structures to arrange the elements of a list or array in a specific order, either ascending or descending. #selectionsort #SortingAlgorithm #DataStructures #Programming #Coding
2
1
11
51
Selection Sort | Sorting Algorithm Selection Sort is a simple, in-place, comparison-based sorting algorithm used in data structures to arrange the elements of a list or array in a specific order, either ascending or descending. #SelectionSort #SortingAlgorithm#DataStructures
2
1
10
46
Day 9/100 DSA Today’s focus: Selection Sort It works by repeatedly finding the minimum element and placing it at the correct position, simple but effective for learning sorting fundamentals. Big thanks to @w3schools for being a handy reference #100DaysOfCode #SelectionSort
1
3
48
Just nailed the Selection Sort Algorithm thanks to the best mentor, Rohit Negi bhaiya, from Coder Army's YouTube channel! πŸ§ πŸ’» Homework smashed too! Concepts pura chamak gaiya bhaiya! ✨ #CodingJourney #SelectionSort #CoderArmy #DSA #Consistency
1
13
380
In this video, I've explained the Selection Sort algorithm step-by-step, showing how it finds the minimum element and sorts the data. Perfect for beginners! #SelectionSort #DataStructures #Algorithms #Coding #Programming #LearnToCode
7
84
πŸ“˜ Java Learning – #Day 24 πŸ”Έ Topic: Selection Sort βœ… Find min β†’ Swap β†’ Repeat βœ… Time: O(nΒ²) | Space: O(1) πŸ’‘ Simple, in-place sorting for small datasets Next β†’ Sorting practice & optimizations πŸ’» #Java #DSA #SelectionSort #100DaysOfCode #Sorting #CodingJourney
3
33
πŸŒ€ Day 4 of DSA Journey: Sorting It Out – Bubble, Selection & Insertion Sort Welcome to Day 4 of our DSA adventure! You’ve learned how to search β€” now it’s time to sort. Sorting is one of the most common interview topics and also a core building block for many algorithms (including Binary Search πŸ‘€). πŸ“¦ What Is Sorting? Sorting means arranging data in a specific order, usually ascending or descending. Example: Unsorted: [5, 1, 4, 2, 8] Sorted: [1, 2, 4, 5, 8] 1. 🫧 Bubble Sort Compare adjacent elements and swap if they're in the wrong order. Repeat until the array is sorted. void bubbleSort(int arr[], int n) { for(int i = 0; i < n-1; i ) for(int j = 0; j < n-i-1; j ) if(arr[j] > arr[j 1]) swap(arr[j], arr[j 1]); } Time: O(nΒ²) Space: O(1) βœ… Easy to understand ❌ Not efficient for large arrays 2. 🟨 Selection Sort Find the minimum element and place it at the beginning. void selectionSort(int arr[], int n) { for(int i = 0; i < n-1; i ) { int minIdx = i; for(int j = i 1; j < n; j ) if(arr[j] < arr[minIdx]) minIdx = j; swap(arr[i], arr[minIdx]); } } Time: O(nΒ²) Space: O(1) βœ… Good when memory writes are costly ❌ Still slow for big inputs 3. πŸ–‹οΈ Insertion Sort Pick an element and insert it into its correct position in the sorted part. void insertionSort(int arr[], int n) { for(int i = 1; i < n; i ) { int key = arr[i]; int j = i - 1; while(j >= 0 && arr[j] > key) { arr[j 1] = arr[j]; j--; } arr[j 1] = key; } } Time: O(nΒ²) but O(n) for nearly sorted Space: O(1) βœ… Great for small or partially sorted arrays 🧩 Challenge of the Day: > ✍️ Write all 3 sorting algorithms from scratch and sort this array: [64, 25, 12, 22, 11] Tomorrow, we’ll explore the efficient sorts β€” Merge Sort & Quick Sort β€” and understand why they're used in real-life systems. Keep coding, Smit πŸ‘¨β€πŸ’»
4
350
30 Jul 2025
Day 15 of #DSA Today, I learned **Selection Sort. ->Understood the logic -> Practiced the code -> Solved problems #DSA #Coding #SelectionSort
11
291
DSA Day 5 βœ… Learned & implemented Selection Sort πŸ” πŸ”Ή Finds the minimum & moves it to the front πŸ”Ή Uses nested loops πŸ”Ή Not stable (can reorder equal elements) πŸ”Ή Time: O(nΒ²) πŸ”Ή Space: O(1) – In-place #DSA #Java #100DaysOfCode #Sorting #SelectionSort #LearnInPublic
3
57
#180daysofcode #DSA #coding #selectionsort #sorting Today i am done selection sort's lin decreasing and character, and what handling edge cases πŸ˜‰increasing form.also find another approach to solve it. Btw this was awesome 😎
3
84
βœ… Today I solved Selection Sort and Insertion Sort problems. Great practice to understand how basic sorting algorithms work step by step! #DSA #SortingAlgorithms #SelectionSort #InsertionSort #100DaysOfCode @ChaiCodeHQ @PrateekJain027
1
6
84
Done with Sorting !! #Dsa QuickSort.. Selectionsort!! Insertionsort!! Merge sort Bubblesort Github-("github.com/riya106/Sorting")
5
264
Day 129 ⚑ ⏰ Woke up at 6:00 AM πŸ’» Watched Lecture 18–Selection Sort* πŸ“Œ Learned: πŸ”Ή SelectionSort #CodingJourney #KeepLearning #Java #DevLife #DSAWithKunal
4
35
Day 128 ⚑ ⏰ Woke up at 6:00 AM πŸ’» Watched Lecture 16–Selection Sort* πŸ“Œ Learned: πŸ”Ή SelectionSort #CodingJourney #KeepLearning #Java #DevLife #DSAWithKunal
4
31
πŸš€ New module added to my DSA GitHub repo: πŸ” Sorting Techniques βœ… First up: Selection Sort in C 🧠 Includes problem stmt, dry run, & full code πŸ“‚ GitHub: github.com/VarunMendre/A2Z_D… #DSA #Cplusplus #100DaysOfCode #Coding #GitHub #SelectionSort

5
21
27 Mar 2025
Day 33: > SelectionSort and BubbleSort Algorithms. > Progressed in react native app and backend. > Resolved some navigation and data fetching issues.
4
140
πŸš€ #Day9 of DSA Journey πŸš€ Explored Sorting Algorithms today! Bubble Sort – Simple but slow! O(nΒ²) Selection Sort – Finds the min & swaps. O(nΒ²) Insertion Sort – Great for nearly sorted arrays! O(nΒ²) @ShradhaKhapra_ #DSA #Sorting #BubbleSort #SelectionSort #InsertionSort
5
45
Selection Sort explained simply! πŸ€“ This short video uses a diagram to show you how this sorting algorithm works. #selectionsort #algorithms #easyexplanation #js #javascript #reactjs #WebDev #webdeveloper
8
305