Git Product home page Git Product logo

vsoft-phuong / algo_ds_notes Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jainaman224/algo_ds_notes

0.0 0.0 0.0 1.89 MB

It is a repository that is a collection of algorithms and data structures with implementation in various languages.

License: GNU General Public License v3.0

C++ 26.22% Java 24.10% Python 18.12% C# 2.20% CoffeeScript 0.69% JavaScript 2.69% PHP 1.03% Ruby 2.94% Go 4.73% C 16.00% Erlang 0.02% Shell 0.03% Clojure 0.01% Scala 0.02% Julia 0.12% Kotlin 0.51% Dart 0.58%

algo_ds_notes's Introduction

Gitter Get it on Google Play

Welcome to Algorithm and Data Structure Notes ๐Ÿ“‹

Our open source community is focussed on understanding the concepts and while doing so, whenever someone gets trapped, they can see one way to code in any language they want. So, we are developing a repository having implementation in as many languages as we can.

Index

Steps to follow ๐Ÿ“œ

1. Fork it ๐Ÿด

You can get your own fork/copy of Algo_Ds_Notes by using the Fork button or clicking this.

Fork Button

2. Clone it ๐Ÿ‘ฅ

You need to clone (download) it to local machine using

$ git clone https://github.com/Your_Username/Algo_Ds_Notes.git

This makes a local copy of repository in your machine.

Once you have cloned the Algo_Ds_Notes repository in Github, move to that folder first using change directory command on linux and Mac.

# This will change directory to a folder Algo_Ds_Notes
$ cd Algo_Ds_Notes

Move to this folder for all other commands.

3. Set it up โฌ†๏ธ

Run the following commands to see that your local copy has a reference to your forked remote repository in Github :octocat:

$ git remote -v
origin  https://github.com/Your_Username/Algo_Ds_Notes.git (fetch)
origin  https://github.com/Your_Username/Algo_Ds_Notes.git (push)

Now, lets add a reference to the original Algo_Ds_Notes repository using

$ git remote add upstream https://github.com/jainaman224/Algo_Ds_Notes.git

This adds a new remote named upstream.

See the changes using

$ git remote -v
origin    https://github.com/Your_Username/Algo_Ds_Notes.git (fetch)
origin    https://github.com/Your_Username/Algo_Ds_Notes.git (push)
upstream  https://github.com/jainaman224/Algo_Ds_Notes.git (fetch)
upstream  https://github.com/jainaman224/Algo_Ds_Notes.git (push)

4. Sync it โ™ป๏ธ

Always keep your local copy of repository updated with the original repository. Before making any changes and/or in an appropriate interval, run the following commands carefully to update your local repository.

# Fetch all remote repositories and delete any deleted remote branches
$ git fetch --all --prune

# Switch to `master` branch
$ git checkout master

# Reset local `master` branch to match `upstream` repository's `master` branch
$ git reset --hard upstream/master

# Push changes to your forked `Algo_Ds_Notes` repo
$ git push origin master

5. Ready Steady Go... ๐Ÿข ๐Ÿ‡

Once you have completed these steps, you are ready to start contributing by checking our Help Wanted Issues and creating pull requests.

6. Create a new branch โ€ผ๏ธ

Whenever you are going to make contribution. Please create seperate branch using command and keep your master branch clean (i.e. synced with remote branch).

# It will create a new branch with name Branch_Name and switch to branch Folder_Name
$ git checkout -b Folder_Name

Create a seperate branch for contibution and try to use same name of branch as of folder.

To switch to desired branch

# To switch from one folder to other
$ git checkout Folder_Name

To add the changes to the branch. Use

# To add all files to branch Folder_Name
$ git add .

Type in a message relevant for the code reveiwer using

# This message get associated with all files you have changed
$ git commit -m 'relevant message'

Now, Push your awesome work to your remote repository using

# To push your work to your remote repository
$ git push -u origin Folder_Name

Finally, go to your repository in browser and click on compare and pull requests. Then add a title and description to your pull request that explains your precious effort.

Help Contributing Guides ๐Ÿ‘‘

We love to have articles and codes in different languages and betterment of existing ones.

Please discuss it with us first by creating new issue.

๐ŸŽ‰ ๐ŸŽŠ ๐Ÿ˜ƒ Happy Contributing ๐Ÿ˜ƒ ๐ŸŽŠ ๐ŸŽ‰

Code Maintainers ๐Ÿ˜Ž

C

ayushin78

CoffeeScript

jainaman224

Cplusplus

KavyaSharma sidgorey uday1201

CSharp

AnkitaKhurana nihalC07

Java

adishjain ayushin78 nj4710

JavaScript

prakharcode

Markdown

swatinirwal

Php

MehakJain96

Python

jainaman224

Ruby

tnarkiv

References ๐Ÿ“‹ ๐Ÿ“œ

  • Books ๐Ÿ“– ๐Ÿ“š
    • Data Structures with C by Schaum Series
    • Data Structures: A Pseudocode Approach with C by Richard F. Gilberg
    • Fundamentals Of Data Structures in C by Horowitz
    • Introduction To Algorithms By Thomas H. Cormen
    • Java: The Complete Reference By Herbert Schildt
    • Object Oriented Programming with C++ by E Balaguruswamy
    • Computer Oriented Numerical Methods By V. Rajaraman
  • Websites ๐Ÿ’ป

algo_ds_notes's People

Contributors

aniket965 avatar ankitakhurana avatar anshitavishwa avatar anshuvats avatar asha15 avatar ayushin78 avatar divs30 avatar dshahid380 avatar gauravburjwal avatar ibragim97 avatar jainaman224 avatar kanchanthareja avatar kavyasharma avatar kunal-kushwaha avatar marwahmanbir avatar mastersabh avatar mehakjain96 avatar nandukalidindi avatar nihalchauhan avatar nj4710 avatar prakharcode avatar raghav-dalmia avatar robotjellyzone avatar shubhammantri1 avatar singh-shreya6 avatar somya-kapoor avatar tnarkiv avatar uday1201 avatar vaibhav4595 avatar vidyabhandary 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.