{"id":18648526,"url":"https://github.com/minhaskamal/algorithmimplementations","last_synced_at":"2025-04-11T14:31:09.215Z","repository":{"id":72583911,"uuid":"47911741","full_name":"MinhasKamal/AlgorithmImplementations","owner":"MinhasKamal","description":"Implementation of Elementary Algorithms (infix-prefix-postfix-evaluation-to-longest-common-increasing-sub-sequence-activity-selection-balance-kd-binary-heap-binomial-tree-breath-depth-first-search-max-flow-shortest-path-topological-sort-calculus-derivative-integration-forward-interpolation-simpson-rule-intersecting-area-non-linear-equation-jacobis-gauss-seidal-bisection-false-position-newton-raphson-fixed-point-secant-cigarette-smokers-genetic-huffman-a-a*-star-binary-knuth-morris-pratt-kmp-quick-thread-priority-based-premitive-shortest-job-non-primitive-arithmetic-expression-data-structures-list-node-implementation-one-two-way-linked-stack-string-graph-numerical-methods-equation-solving-solve-process-problem-search-sort-prime-ugly-friend-perfect-fibonacci-factorial-factor-number)","archived":false,"fork":false,"pushed_at":"2018-06-30T08:05:20.000Z","size":371,"stargazers_count":77,"open_issues_count":0,"forks_count":33,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-03-25T14:39:03.168Z","etag":null,"topics":["a-star","algorithm","algorithms","assembly","c","c-plus-plus","factor","factorial","fibonacci-numbers","friend-number","genetic-algorithm","graph","huffman","java","prime-numbers","sort","tree"],"latest_commit_sha":null,"homepage":"http://minhaskamal.github.io/AlgorithmImplementations","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MinhasKamal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-12-13T08:36:36.000Z","updated_at":"2025-03-04T14:40:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"47c76229-7916-4f97-807b-a49f77867caa","html_url":"https://github.com/MinhasKamal/AlgorithmImplementations","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinhasKamal%2FAlgorithmImplementations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinhasKamal%2FAlgorithmImplementations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinhasKamal%2FAlgorithmImplementations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinhasKamal%2FAlgorithmImplementations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MinhasKamal","download_url":"https://codeload.github.com/MinhasKamal/AlgorithmImplementations/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248419652,"owners_count":21100216,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["a-star","algorithm","algorithms","assembly","c","c-plus-plus","factor","factorial","fibonacci-numbers","friend-number","genetic-algorithm","graph","huffman","java","prime-numbers","sort","tree"],"created_at":"2024-11-07T06:31:33.750Z","updated_at":"2025-04-11T14:31:04.204Z","avatar_url":"https://github.com/MinhasKamal.png","language":"C++","readme":"# Algorithm Implementations\n#### Implementation of Elementary Algorithms\n\nThe project contains algorithms that were implemented in my Data Structure \u0026 Algorithms course. Yes, I got marks for those. :P\n\n### Categorical List of Algorithms\n\nAlgorithmImplementations \u003cbr/\u003e\n\u0026emsp;├─ arithmeticExpressions \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/arithmeticExpressions/infixEvaluation\"\u003eInfixEvaluation\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/arithmeticExpressions/infixToPostfix\"\u003eInfixToPostfix\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/arithmeticExpressions/infixToPrefix\"\u003eInfixToPrefix\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/arithmeticExpressions/postfixEvaluation\"\u003ePostfixEvaluation\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/arithmeticExpressions/prefixEvaluation\"\u003ePrefixEvaluation\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;├─ dataStructures \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ listImplementation \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ implementationUsingNode \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/listImplementation/implementationUsingNode/OneWayLinkedList.cpp\"\u003eOneWayLinkedList\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/listImplementation/implementationUsingNode/TwoWayLinkedList.cpp\"\u003eTwoWayLinkedList\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/listImplementation/OneWayLinkedList.cpp\"\u003eOneWayLinkedList\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/listImplementation/TwoWayLinkedList.cpp\"\u003eTwoWayLinkedList\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ stack \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/stack/StackImplementation.asm\"\u003eStackImplementation\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/stack/StackImplementation.c\"\u003eStackImplementation\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ string \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/string/String.c\"\u003eString\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/string/StringLongestCommonSubSecuence.cpp\"\u003eStringLongestCommonSubSecuence\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/string/StringLongestIncreasingSubSecuence.cpp\"\u003eStringLongestIncreasingSubSecuence\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ tree \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/dataStructures/tree/activitySelection\"\u003eActivitySelection\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/dataStructures/tree/balanceTree\"\u003eBalanceTree\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/dataStructures/tree/kdTree\"\u003eKdTree\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/tree/BinaryHeap.cpp\"\u003eBinaryHeap\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/dataStructures/tree/BinomialTree.cpp\"\u003eBinomialTree\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;├─ graph \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/graph/breathFirstSearch\"\u003eBreathFirstSearch\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/graph/depthFirstSearch\"\u003eDepthFirstSearch\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/graph/maxFlow\"\u003eMaxFlow\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/graph/shortestPathAlgorithm\"\u003eShortestPathAlgorithm\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/graph/topologicalSort\"\u003eTopologicalSort\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;├─ numericalMethods \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ calculus \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/numericalMethods/calculus/DerivetivesOnDifferentPoints.c\"\u003eDerivetivesOnDifferentPoints\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/numericalMethods/calculus/IntegrationForwardInterpolation.c\"\u003eIntegrationForwardInterpolation\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/numericalMethods/calculus/IntegrationSimpsonRule.c\"\u003eIntegrationSimpsonRule\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/numericalMethods/calculus/IntersectingArea.c\"\u003eIntersectingArea\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ equationSolving \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/numericalMethods/equationSolving/LinearEquationSolvingProcess.c\"\u003eLinearEquationSolvingProcess\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;│\u0026emsp;├─ JacobisMethod \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;│\u0026emsp;└─ GaussSeidalMethod \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/numericalMethods/equationSolving/NonLinearEquationSolvingProcess.c\"\u003eNonLinearEquationSolvingProcess\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp; \u0026emsp;├─ BisectionMethod \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp; \u0026emsp;├─ FalsePosition \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp; \u0026emsp;├─ NewtonRaphson \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp; \u0026emsp;├─ FixedPoint \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp; \u0026emsp;└─ Secant \u003cbr/\u003e\n\u0026emsp;├─ others \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/others/cigaretteSmokersProblem\"\u003ecigaretteSmokersProblem\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/others/geneticAlgorithm\"\u003egeneticAlgorithm\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/others/huffmanAlgorithm\"\u003ehuffmanAlgorithm\u003c/a\u003e (\u003ca href=\"https://github.com/MinhasKamal/FileSqueezer\"\u003e¿\u003c/a\u003e) (\u003ca href=\"https://www.quora.com/What-is-the-coolest-thing-you-have-ever-created-alone-as-a-programmer/answer/Minhas-Kamal?srid=u2HNX\"\u003e~\u003c/a\u003e) \u003cbr/\u003e\n\u0026emsp;├─ search \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/search/aStarSearch\"\u003eAStarSearch\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/search/binarySearch\"\u003eBinarySearch\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/search/knuthMorrisPrattAlgorithm\"\u003eKnuthMorrisPrattAlgorithm\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;├─ sort \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/sort/quickSort\"\u003eQuickSort\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;├─ thread \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;├─ priorityBased\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/thread/priorityBased/nonpremitive\"\u003enonpreemptive\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/thread/priorityBased/premitive\"\u003epreemptive\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp;└─ shortestJob \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/thread/shortestJob/nonpremitive\"\u003enonpreemptive\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;│\u0026emsp; \u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/tree/master/thread/shortestJob/premitive\"\u003epreemptive\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp;└─ playWithNumbers \u003cbr/\u003e\n\u0026emsp; \u0026emsp;├─ factorial \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/factorial/BigFactorials.c\"\u003eBigFactorials\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/factorial/DigitsOfFactorial.c\"\u003eDigitsOfFactorial\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/factorial/FactorsOfFactorial.c\"\u003eFactorsOfFactorial\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;├─ fibonaciiNumber \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/fibonaciiNumber/FibonaciiNumber.c\"\u003eFibonaciiNumber\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/fibonaciiNumber/FibonaciiSerise.c\"\u003eFibonaciiSerise\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/fibonaciiNumber/FibonaciiSum.c\"\u003eFibonaciiSum\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;├─ otherNumbers \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/otherNumbers/FriendNumbers.c\"\u003eFriendNumbers\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/otherNumbers/PerfectNumberHaunting.c\"\u003ePerfectNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;├─ pascalTriangle \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/pascalTriangle/BetterPascalTriangle.c\"\u003eBetterPascalTriangle\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/pascalTriangle/EasyPascalTriangle.c\"\u003eEasyPascalTriangle\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/pascalTriangle/PascalTriangle.c\"\u003ePascalTriangle\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/pascalTriangle/Piramid.c\"\u003ePiramid\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/pascalTriangle/RealPascalTriangle.c\"\u003eRealPascalTriangle\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;├─ primeNumber (\u003ca href=\"https://github.com/MinhasKamal/ProgrammerTransformation\"\u003eScrt Chmbr\u003c/a\u003e) \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/AnotherWayOfPrimeNumberHaunting.c\"\u003eAnotherWayOfPrimeNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/DefinitePrimeNumberHaunting.c\"\u003eDefinitePrimeNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/Factors.c\"\u003eFactors\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/GreatPrimeNumberHaunting.c\"\u003eGreatPrimeNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/GreatestPrimeNumberHaunting.c\"\u003eGreatestPrimeNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/PrimeNumber.c\"\u003ePrimeNumber\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/PrimeNumberHaunting.asm\"\u003ePrimeNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;│\u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/primeNumber/PrimeNumberHaunting.c\"\u003ePrimeNumberHaunting\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp;└─ time \u003cbr/\u003e\n\u0026emsp; \u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/time/AgeCalculator.c\"\u003eAgeCalculator\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/time/LeapYearCounter.c\"\u003eLeapYearCounter\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp; \u0026emsp;├─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/time/Stopwatch.c\"\u003eStopwatch\u003c/a\u003e \u003cbr/\u003e\n\u0026emsp; \u0026emsp; \u0026emsp;└─ \u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations/blob/master/playWithNumbers/time/TimeAfter.c\"\u003eTimeAfter\u003c/a\u003e \u003cbr/\u003e\n\n\n### License\n\u003ca rel=\"license\" href=\"https://opensource.org/licenses/MIT\"\u003e\u003cimg alt=\"MIT License\" src=\"https://cloud.githubusercontent.com/assets/5456665/18950087/fbe0681a-865f-11e6-9552-e59d038d5913.png\" width=\"60em\" height=auto/\u003e\u003c/a\u003e\u003cbr/\u003e\u003ca href=\"https://github.com/MinhasKamal/AlgorithmImplementations\"\u003eAlgorithm Implementations\u003c/a\u003e is licensed under \u003ca rel=\"license\" href=\"https://opensource.org/licenses/MIT\"\u003eMIT License\u003c/a\u003e.\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminhaskamal%2Falgorithmimplementations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminhaskamal%2Falgorithmimplementations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminhaskamal%2Falgorithmimplementations/lists"}