排序
Reverse Lists, Add them, Reverse the sum and return the sum as a List
Reverse Lists, Add them, Reverse the sum and return the sum as a List,I came around this problem while solving questions on leetcode. This is a very good problem of linked lists. B...
What are Packages and How we can use it?
What are Packages and How we can use it?,In this article, We will learn about packages and What is the hierarchy and learn about how Packages contains different class and methods. ...
How to reverse a linked list in simple and optimal way in java
How to reverse a linked list in simple and optimal way in java,To reverse a linked list in Java, you can use an iterative approach which is both simple and optimal in terms of time...
DS: Singly Linked List in Python
DS: Singly Linked List in Python, 1 Singly Linked List 2 Doubly Linked List 3 Circular Linked List What is a linked list? Linked list a data structure used to store and access a co...
Why should Python not be your first language?
Why should Python not be your first language?,While Python is the most hot topic these days, either in web development (not that much), data science, or AI/ML,. Python provides ric...
Introduction to Sets in Python
Introduction to Sets in Python,Data structures are used to organize data for efficient access when needed. They are a vital part of programming languages and in Python they include...
Heap – Min e Max
Heap - Min e Max, Heap - Min Heap Heap é uma versão mais eficiente da lista de prioridade. Leve em consideração so métodos de inserção e remoção da Priority Queue Sorted e...
Minimum number of Insertion and deletion needed to convert String A to String B or make both the strings equal (same as lcs)
Minimum number of Insertion and deletion needed to convert String A to String B or make both the strings equal (same as lcs), Dp Learnings (27 Part Series) 1 House Robber leetcode ...
LeetCode Day 11 Binary Tree Part 1
LeetCode Day 11 Binary Tree Part 1, Tree Structure 2 ways to realize Binary Tree 1, Linked method. Similar to a Linked list, use logical linking by references instead of a physical...
You Should Use Python Sets
You Should Use Python Sets, This post contains references to Big O notation1, if you aren't familiar with it (or don't remember how it works) now is a good time for a refresher. Th...
Introduction to Data Structures and Algorithims with Python
Introduction to Data Structures and Algorithims with Python,Data Structures and Algorithims have always been approached with a skeptical attitude of being very hard. It is probaly ...
Little Movie Recommending Code
Little Movie Recommending Code,This new project is about data structures and how to go through them. Recently just learn about 'BFS' and 'DFS' so made a project using both. It was ...