Code Monkey home page Code Monkey logo

rathoresrikant / hacktoberfestcontribute Goto Github PK

View Code? Open in Web Editor NEW
64.0 2.0 665.0 38.23 MB

Please note that contributions made to this repository are not counted as valid for Hacktoberfest 2021.

License: MIT License

PHP 0.57% C 9.64% C++ 56.98% Python 12.86% Java 13.05% Makefile 0.03% Go 0.20% Ruby 0.07% JavaScript 1.79% Haskell 0.09% C# 0.58% Dart 0.20% TypeScript 0.02% Assembly 0.24% HTML 2.18% MATLAB 0.96% PowerShell 0.06% SystemVerilog 0.39% Shell 0.01% Rust 0.06%
hacktoberfest easy-to-use first-timers algorithms data-structures good-first-issue hacktoberfest2019

hacktoberfestcontribute's People

Contributors

aawadall avatar ali-f1995 avatar andres-mpu avatar anjalijaiswal08 avatar arjunann avatar arshgupta09 avatar ashwani99 avatar ashwinginoria avatar bicmfcs avatar devikasugathan avatar hemishv111 avatar kirti0808 avatar krishremya avatar longdead-ai avatar mitesh1612 avatar muvvasandeep avatar netoxavier13 avatar nileshpatra avatar poojasharma2000 avatar rathoresrikant avatar rittythomas avatar rushitjasani avatar saisameer010 avatar sakshamb2113 avatar shashikant95 avatar simonemungari avatar sumitjain0695 avatar tharindumd avatar theerthababu avatar tushar1210 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

hacktoberfestcontribute's Issues

Sum of keys of all the cousins of a node in a binary tree.

Cousins of a node in a binary tree are those nodes, which are at the same level (same distance from the root) and don't have the same parent as that of the given node (siblings are not cousins :-) ). Given a binary tree and the key of a node, find the sum of keys of all the cousins of the tree. The keys of the nodes are distinct.
Details :
Programming language : C, C++, Java, Python
Explanation : Yes
Directory : Data Structures/ Trees

Implementation of Heap.

Details :`
Programming language : Any
Directory : Data Structures
Create a sub folder for heaps.

Find majority element in an array.

Given an unsorted array of elements. Find the majority element in the array. (Use Moore's voting)
Details
Programming Language : Any
Time complexity : Linear
Directory : Algorithms

Subset Sum Problem

Problem Statement:
Given a set of non-negative integers, and a value sum, determine if there is a subset of the given set with sum equal to given sum.

Sub Set Sum Probelm #HactoberFest

Problem Statement :
Given a set of non-negative integers, and a value sum, determine if there is a subset of the given set with sum equal to given sum.

Detecting a loop in a linked list

Details
Programming languages : C, C++, Java, Python
Explanation : Yes
Directory : Data Structures
Please refrain from using plagiarised code. Happy coding !

Reversing a linked list

Details
Programming languages : C, C++, Java, Python
Explanation : Yes
Directory : Data Structures
Please refrain from using plagiarised code. Happy coding !

Implement RSA algorithm

RSA is an algorithm used by modern computers to encrypt and decrypt messages. It is an asymmetric cryptographic algorithm. (Wikipedia)

Details
Programming language : C, C++, Java, Python
Directory : Algorithms
Explanation : Yes

Please comment here to claim the issue. (language specific)
To know more about RSA proceed here .

Printing all the amstrong numbers in a given range.

An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself.
Details :
Programming language : Any
Directory : Algorithms/Mathematical Algorithms

Remove extra spaces from a string.

Given a string that contains many extra spaces between two words. Remove the consecutive space such that there two words are separated by a single white space.
Programming language : Any

Intersection of two linked lists

Given the head pointer of two linked lists , find whether they intersect or not. They will intersect if both contain atleast one common node.
Details :
Programming language : C, C++, Java
Explanation : Yes
Directory : Data Structures/ Linked lists

Selection_sort.c

#include<stdio.h>
void main()
{
int i, j, temp, n, a[20],min;
printf("Enter the size");
scanf("%d",&n);
printf("Enter the elements:");
for(i=0;i<n;i++)
scanf("%d",&a[i]);
for(i=0;i<n-1;i++)
{
min=i;
for(j=i+1;j<n;j++)
{
if(a[j]<a[min])
min=j;
}
temp=a[i];
a[i]=a[min];
a[min]=temp;
}
printf("Sorted array is:");
for(i=0;i<n;i++)
printf("%d",a[i]);
}

Max Flow Problems should be included.

We have collected many good DS and Algo codes. But "the king of the Algo" is still not there. There are many interesting problems in Max Flow - Min Cost domain. Can i add Max Flow in a undirected graph problem in Graph Domain?

Add well known algorithms in the Algorithms folder

Please make a sub folder in Algorithms before you add code like
Divide and Conquer
Graph Theory
Dynamic Programming
Greedy Algorithms
Mathematical Algorithms
Backtracking
Branch and Bound

Please add working codes with proper names.

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.