Eniola Bakareeniola-bakare.hashnode.dev·Dec 5, 2024A Working Understanding of AlgorithmsAn algorithm is a finite sequence of well-defined instructions, typically used to solve a class of specific problems or to perform a computation. - Wikipedia An algorithm refers to a set of step-by-step instructions to be followed to achieve a partic...13 likes·30 readsA Working Understanding of Data Structures and Algorithms (DSA)algorithms
Keerthi Ravilla Subramanyamkeerthiravillasubramanyam.hashnode.dev·Nov 19, 2024Linear Search Explained: The Simple Approach to Finding DataIn our exploration of data structures and algorithms, we've seen the importance of sorting algorithms like Bubble Sort, Quick Sort, and Merge Sort, which help us arrange data in a particular order to make it easier to find, analyze, and manipulate. N...Data structures courselinearsearch
Jyotiprakash Mishrablog.jyotiprakash.org·Sep 26, 2024Introduction to SearchingSearching is the process of finding a particular element in a collection of items, such as an array, list, or database. The goal of searching is to locate the position of the desired item in the collection, if it exists, or to determine that the item...554 readssearchin
Juhilee Nazarejuhilee.hashnode.dev·Sep 22, 2024Linear SearchLinear search, also known as sequential search is used to find a specific value withing an array or a list. It checks each element one by one until desired element is found and end of the list is reached. How it works ? Start from first element in t...Data Structures and AlgorithmsJava
Raka Alfariziglizzy.hashnode.dev·May 22, 2024How to Create a Simple Stock Price Prediction Project Using Linear RegressionStep 1: Setting Up Your Environment Install Python: Ensure Python is installed on your computer. Download the latest version from python.org. Install Jupyter Notebook: Install Jupyter Notebook to organize your code and analysis. pip install jupyte...stockmarket
YASHdsawithyash.hashnode.dev·May 3, 2024Understanding the Basics of Linear SearchThis algorithm searches for an element in an array sequentially, one by one, until either the element is found or the end of the array is reached We start by taking the input array arr[] and the element to be searched x. We initialize a variable n ...linearsearch
Shaique Hossainshaique7.hashnode.dev·Apr 30, 2024Searching in Data Structures: Types, Techniques and MethodsSearching in data structures involves finding a specific element efficiently within a collection of data. Common types of searches include: Linear Search: Sequentially checks each element from start to end. Binary Search: Efficiently finds an eleme...data structures
Md.Naimur Rahman (Navil)navilbyte.hashnode.dev·Mar 15, 2024Data Structure & Algorithm l3 likes·1.5K readsUIU BSCSE CoursesDsa 1
Jyotiprakash Mishrablog.jyotiprakash.org·Jan 3, 2024Linear SearchLinear search, also known as sequential search, is a method for finding a particular value in a list. It sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched. Here's an ...109 readslinearsearch
Soumya Ranjan Tripathysoamtripathy.hashnode.dev·Dec 2, 2023Why Binary Search is better than Linear Search?Welcome to my new blog, we discuss how Binary search is more efficient and speedy than Linear Search. Linear Search in an array or a list goes through each item to find the target item. For example, let [1, 2, 3, 4, 5, 6] be an array and its length i...214 readsPython