Ibrahim Sifatibrahimsifat.com·Feb 3, 2025Day 3 | Ultimate Guide to Sorting Algorithms: A Beginner-to-Advanced Journey in Banglaসর্টিং কি? (What is Sorting?) সর্টিং হলো একটি প্রক্রিয়া যেখানে আমরা কিছু এলিমেন্ট (elements) কে একটা নির্দিষ্ট ক্রম অনুযায়ী সাজাই। এটা হতে পারে ছোট থেকে বড় (ascending order) বা বড় থেকে ছোট (descending order)। দৈনন্দিন জীবনে সর্টিং (Real-life Exam...DSADSA
Lena Junglenajung.hashnode.dev·Jan 29, 2025[Coding Test] Sorting Algorithms1. Bubble Sort key Idea Compare adjacent pairs of elements in an array and swap them if they are in the wrong order, gradually moving larger elements to the end of the array. Time Complexity O(n^2) in the worst and average cases O(n) in the best ...algorithms
Pierre-Henry Soriapierrehenry.hashnode.dev·Jan 25, 2025How to sort correctly arrays in JavaScript?https://www.youtube.com/watch?v=3XYREfb_l94 Today we're going to look at how to sort arrays (and numbered arrays) in JavaScript. Finally, we'll see how to sort arrays containing objects by adding an attribute, such as priority or order, to display ...array
Shivam Dubeycodefarms.in·Jan 23, 2025Unlocking SQL Power: Mastering Filtering, Sorting, and Aggregations for Data MasteryIf you're new to SQL, you'll soon discover that one of its most powerful features is the ability to precisely extract the data you need from vast databases. In this article, we’ll explore three essential SQL concepts that every beginner should master...PostgresSQL
Ganti Sai Sagarsdetinsider.hashnode.dev·Jan 22, 2025Sorting ArrayList with Comparator.comparing()Using Comparator.comparing() for Sorting In Java 8 and later, the Comparator.comparing() method provides a more concise and readable way to create comparators for sorting, especially when working with custom objects. This method allows you to define ...sorting
Ganti Sai Sagarsdetinsider.hashnode.dev·Jan 22, 2025Sorting an ArrayListSorting an ArrayList Using Collections.sort() in Java In Java, we can easily sort an ArrayList using the Collections.sort() method, which is part of the java.util.Collections class. This method sorts the elements of the ArrayList in ascending order b...Collection Framework
Anshul Sharmaanshul-sharma.hashnode.dev·Jan 20, 2025The Algorithm Adventure: Cracking the Code of EfficiencyWelcome Back to The Nerdy Nook ! Today, we’re diving into the world of algorithms—the secret sauce behind every app, website and game you use. Whether you’re a coding newbie or a seasoned developer, this post will take you on an epic adventure throug...Web Development
Shivam Dubeycodefarms.in·Jan 14, 2025GraphQL: Implementing Pagination, Filtering, and Sorting (Part-2)In the previous article, we discussed pagination—a critical technique for managing large datasets efficiently in GraphQL. Now, let’s take it a step further. Users often want to do more than just retrieve large datasets in chunks when working with dat...GraphQLGraphQL Filtering
Yogesh Shrimaliyogeshshrimali.hashnode.dev·Jan 14, 2025The Impact of Misordered Limit, Skip, and Sort in MongoDB AggregationsMongoDB provides powerful querying capabilities with a robust aggregation framework, allowing developers to retrieve, filter, transforming, and manipulate data effectively. While the framework is powerful, the order of operations especially when usin...52 readsMongoDB
Anubhav Kumar Guptaanubhav2103.hashnode.dev·Jan 7, 2025Radix Sort.A Unique Linear-Time Sorting Algorithm Sorting algorithms are essential in computer science, allowing us to organize data efficiently. While many popular sorting algorithms like Merge Sort, Heap Sort, and Quick Sort are comparison-based and have a lo...8 likesradixsorting