DIPA GHOSHdsasortingbubble-sort.hashnode.dev·Oct 7, 2024A Simple Guide to Bubble Sort TechniqueBubble sort is simple comparison based sorting technique. Steps: Compare each pair of adjacent elements. If current element is greater than next element, swap them. Continue this process for the entire array. With each iteration, the largest unso...2 likesDSA
Roshan Guragainroshangrg.hashnode.dev·Jun 18, 2023DSA Chapter 0Data Structure and algorithm are two different things. Data Structures: A data structure is a storage mechanism designed to efficiently store and organize data in memory. Its purpose is to facilitate efficient data access, manipulation, and retrieval...DSA