Code Monkey home page Code Monkey logo

sdp-python's Introduction

Data Structures:

Linear Data Structures: Contiguous memory locations used to store elements of the same data type.

  • Linked Lists: Each element (node) contains a reference to the next element in the sequence.
  • Stacks: Follows the Last-In, First-Out (LIFO) principle; elements are inserted and removed from the same end.
  • Queues: Follows the First-In, First-Out (FIFO) principle; elements are inserted at the rear and removed from the front.
  • Vectors: Similar to arrays but can dynamically resize to accommodate more elements. Same as list in python

Nonlinear (Hierarchical) Data Structures:

  • Trees: Consists of nodes connected by edges in a hierarchical structure. Various types include:
  • Binary Trees: Each node has at most two children.
  • Binary Search Trees (BSTs): Binary trees where the left child is smaller and the right child is greater than the parent node.
  • AVL Trees: Self-balancing binary search trees to maintain a balanced structure.
  • Red-Black Trees: Another type of self-balancing binary search tree.
  • Graphs: Consists of a set of vertices (nodes) connected by edges. Various types include:
  • Directed Graphs (Digraphs): Edges have a direction.
  • Undirected Graphs: Edges have no direction.
  • Weighted Graphs: Edges have weights assigned to them.
  • Sparse Graphs: Few connections between vertices.
  • Dense Graphs: Many connections between vertices.
  • Hash Tables: Maps keys to values using a hash function, allowing for efficient lookup, insertion, and deletion.
  • Heaps: A specialized tree-based data structure that satisfies the heap property; commonly used for priority queues.
  • Tries (Prefix Trees): A tree-like data structure used to store a dynamic set of strings; each node represents a common prefix.

sdp-python

Cover these: Union(str|None) .. Similar concepts if exists like Any, All etc

Reference

https://stackoverflow.com/questions/67061702/what-is-pylint-exit-code-28

sdp-python's People

Contributors

sanjeetshukla01 avatar

Watchers

 avatar

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.