Skip to content

Latest commit

History

History
48 lines (43 loc) 路 1.04 KB

README.md

File metadata and controls

48 lines (43 loc) 路 1.04 KB

PyDataStructures 馃梼

A data structure is a particular way of organizing data in a computer so that it can be used effectively. For example, we can store a list of items having the same data-type using the array data structure. This repository contains detailed data structures topics with implementations.馃搲

Topics

Linear Data Structures

  1. LinkedList 馃敆
  • Singly linked list
  • Doubly linked list
  • Circular linked list
  1. Queue
  2. Stack

Non linear Data Structures

  1. Binary Trees
  2. Heaps
  3. Graphs

馃殌聽Installation

  1. Clone the repository
https://github.com/Ash515/PyDataStructures.git
  1. Check the status of your file
$git status

3.For using VScode for editing your files

$git code .
  1. To directly add your files to github
$git add .
  1. After writing your code commit your changes
$git commit -m  <message>
  1. To pull your code to reposoitory
$git push origin master

Thats all about installation and version control with Git

Author

Ashwin Kumar Ramaswamy