Giter VIP home page Giter VIP logo

dheeraj-02nk / python-data-structures-and-algorithm Goto Github PK

View Code? Open in Web Editor NEW
12.0 1.0 0.0 166 KB

Data structures are objects or collections that can be used to store and organize data. Python offers a variety of built-in data structures that are designed to efficiently manage and manipulate data. Here are some common data structures in Python

Python 100.00%
array data-structures ds dsa linked-list queue stack tree

python-data-structures-and-algorithm's Introduction

Data-Structures:

Arrays and Strings

  • Arrays are collections of elements, while strings are sequences of characters.
  • Important operations include indexing, slicing, reversing, and searching.

Linked Lists

  • Linked lists are linear data structures made up of nodes, each containing data and a reference to the next node.
  • Common operations include insertion, deletion, and traversal.

Stacks

  • Stacks follow the Last-In-First-Out (LIFO) principle.
  • They support push (insertion) and pop (removal) operations.

Queues

  • Queues follow the First-In-First-Out (FIFO) principle.
  • Common operations include enqueue (insertion) and dequeue (removal).

Trees

  • Trees are hierarchical data structures with a root node, parent-child relationships, and leaf nodes.
  • Binary trees have at most two children per node.

Graphs

  • Graphs represent connections between nodes (vertices) through edges.
  • Graph traversal algorithms such as BFS & DFS.

Hash Tables

  • Hash tables use a hash function to map keys to values, providing constant-time average case lookup.
  • They handle collisions using techniques like chaining or open addressing.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.