In computer science, Linked List is a basic and linear type data structure like Array. Both are used to store a collection of elements. But there is a difference between Array and Linked List. But In this article, I will write all about Linked List. You can read my article about the Array if you […]
Category: Data Structure
Multidimensional Array – Data Structure
If you already know about Array. Then learning Multidimensional Array will not difficult for you. If you want to read my article about Array, click here. In short, when we write array inside an array, it’s become a multidimensional array. Let’s try to understand more clearly through examples. Note: In python, we are going to […]
Array | Data Structure
If you are familiar with at least one programing language, you already used array. It’s a linear and the most fundamental data structure of computer science. It’s comparatively easy to learn and very useful. In short, an array is a collection of elements. These elements can be any type of data type. Such as integer, […]
Intro of Data Structure
I want to be a good software engineer, should I know about Data Structure? The answer is yes, of course. 🙂 Data Structure is a very fundamental subject in computer science. In our computer, we are dealing with data every time. In fact, without data, there is nothing to do on a computer. Suppose a […]
Planning to write about Data Structure and Algorithms
First of all, I want to clear one thing that I am not an expert. But I will try to give my best as per as I can. I’m doing it for my own good. We all know that “The Best Way to Learn is to Teach”. In computer science, Data Structure and Algorithms are […]