Skip to content

Commit 79e40a0

Browse files
Merge branch 'master' into add_sha1
2 parents 594a56d + 4263dac commit 79e40a0

File tree

118 files changed

+670
-72
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+670
-72
lines changed

cache/lru.go

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// lru.go
2+
// description : Least Recently Used (LRU) cache
3+
// details : A Least Recently Used (LRU) cache is a type of cache algorithm used to manage memory within a computer. The LRU algorithm is designed to remove the least recently used items first when the cache reaches its limit.
4+
// time complexity : O(1)
5+
// space complexity : O(n)
6+
// ref : https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU)
7+
18
package cache
29

310
import (

checksum/crc8.go

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// details:
44
// A cyclic redundancy check (CRC) is an error-detecting code commonly used in digital networks
55
// and storage devices to detect accidental changes to raw data.
6+
// time complexity: O(n)
7+
// space complexity: O(1)
68
// See more [CRC](https://en.wikipedia.org/wiki/Cyclic_redundancy_check)
79
// author(s) [red_byte](https://github.com/i-redbyte)
810
// see crc8_test.go

checksum/luhn.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// lunh.go
22
// description: Luhn algorithm
33
// details: is a simple checksum formula used to validate a variety of identification numbers, such as credit card numbers, IMEI numbers, etc [Lunh](https://en.wikipedia.org/wiki/Luhn_algorithm)
4+
// time complexity: O(n)
5+
// space complexity: O(1)
46
// author(s) [red_byte](https://github.com/i-redbyte)
57
// see lunh_test.go
68

cipher/caesar/caesar.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// Package caesar is the shift cipher
2+
// description: Caesar cipher
3+
// details : Caesar cipher is a type of substitution cipher in which each letter in the plaintext is shifted a certain number of places down the alphabet.
4+
// time complexity: O(n)
5+
// space complexity: O(n)
26
// ref: https://en.wikipedia.org/wiki/Caesar_cipher
37
package caesar
48

cipher/diffiehellman/diffiehellmankeyexchange.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// Package diffiehellman implements Diffie-Hellman Key Exchange Algorithm
2+
// description: Diffie-Hellman key exchange
3+
// details : Diffie-Hellman key exchange is a method of securely exchanging cryptographic keys over a public channel by combining private keys of two parties to generate a shared secret key.
4+
// time complexity: O(log(n))
5+
// space complexity: O(1)
26
// for more information watch : https://www.youtube.com/watch?v=NmM9HA2MQGI
37
package diffiehellman
48

cipher/polybius/polybius.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// Package polybius is encrypting method with polybius square
2+
// description: Polybius square
3+
// details : The Polybius algorithm is a simple algorithm that is used to encode a message by converting each letter to a pair of numbers.
4+
// time complexity: O(n)
5+
// space complexity: O(n)
26
// ref: https://en.wikipedia.org/wiki/Polybius_square#Hybrid_Polybius_Playfair_Cipher
37
package polybius
48

cipher/railfence/railfence.go

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// railfence.go
2+
// description: Rail Fence Cipher
3+
// details: The rail fence cipher is a an encryption algorithm that uses a rail fence pattern to encode a message. it is a type of transposition cipher that rearranges the characters of the plaintext to form the ciphertext.
4+
// time complexity: O(n)
5+
// space complexity: O(n)
6+
// ref: https://en.wikipedia.org/wiki/Rail_fence_cipher
17
package railfence
28

39
import (

cipher/rot13/rot13.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// Package rot13 is a simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet.
2+
// description: ROT13
3+
// details: ROT13 is a simple letter substitution cipher that replaces a letter with the 13th letter after it in the alphabet. it is a special case of the Caesar cipher
4+
// time complexity: O(n)
5+
// space complexity: O(n)
26
// ref: https://en.wikipedia.org/wiki/ROT13
37
package rot13
48

cipher/rsa/rsa.go

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
// thus both the Encrypt and Decrypt are not a production
77
// ready implementation. The OpenSSL implementation of RSA
88
// also adds a padding which is not present in this algorithm.
9+
// time complexity: O(n)
10+
// space complexity: O(n)
911
// author(s) [Taj](https://github.com/tjgurwara99)
1012
// see rsa_test.go
1113

cipher/rsa/rsa2.go

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
rsa2.go
33
description: RSA encryption and decryption including key generation
44
details: [RSA wiki](https://en.wikipedia.org/wiki/RSA_(cryptosystem))
5+
time complexity: O(n)
6+
space complexity: O(1)
57
author(s): [ddaniel27](https://github.com/ddaniel27)
68
*/
79
package rsa

cipher/transposition/transposition.go

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// description: Transposition cipher
33
// details:
44
// Implementation "Transposition cipher" is a method of encryption by which the positions held by units of plaintext (which are commonly characters or groups of characters) are shifted according to a regular system, so that the ciphertext constitutes a permutation of the plaintext [Transposition cipher](https://en.wikipedia.org/wiki/Transposition_cipher)
5+
// time complexity: O(n)
6+
// space complexity: O(n)
57
// author(s) [red_byte](https://github.com/i-redbyte)
68
// see transposition_test.go
79

cipher/xor/xor.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
// Package xor is an encryption algorithm that operates the exclusive disjunction(XOR)
2+
// description: XOR encryption
3+
// details: The XOR encryption is an algorithm that operates the exclusive disjunction(XOR) on each character of the plaintext with a given key
4+
// time complexity: O(n)
5+
// space complexity: O(n)
26
// ref: https://en.wikipedia.org/wiki/XOR_cipher
37
package xor
48

compression/huffmancoding.go

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// details:
44
// We implement the linear-time 2-queue method described here https://en.wikipedia.org/wiki/Huffman_coding.
55
// It assumes that the list of symbol-frequencies is sorted.
6+
// time complexity: O(n)
7+
// space complexity: O(n)
68
// author(s) [pedromsrocha](https://github.com/pedromsrocha)
79
// see also huffmancoding_test.go
810

compression/rlecoding.go

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ rlecoding.go
33
description: run length encoding and decoding
44
details:
55
Run-length encoding (RLE) is a simple form of data compression in which runs of data are stored as a single data value and count, rather than as the original run. This is useful when the data contains many repeated values. For example, the data "WWWWWWWWWWWWBWWWWWWWWWWWWBBB" can be compressed to "12W1B12W3B". The algorithm is simple and can be implemented in a few lines of code.
6+
time complexity: O(n)
7+
space complexity: O(n)
8+
ref: https://en.wikipedia.org/wiki/Run-length_encoding
69
author(s) [ddaniel27](https://github.com/ddaniel27)
710
*/
811
package compression

conversion/base64.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// base64.go
22
// description: The base64 encoding algorithm as defined in the RFC4648 standard.
33
// author: [Paul Leydier] (https://github.com/paul-leydier)
4+
// time complexity: O(n)
5+
// space complexity: O(n)
46
// ref: https://datatracker.ietf.org/doc/html/rfc4648#section-4
57
// ref: https://en.wikipedia.org/wiki/Base64
68
// see base64_test.go

conversion/binarytodecimal.go

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ Date: 19-Oct-2021
99
// https://en.wikipedia.org/wiki/Decimal
1010
// Function receives a Binary Number as string and returns the Decimal number as integer.
1111
// Supported Binary number range is 0 to 2^(31-1).
12+
// time complexity: O(n)
13+
// space complexity: O(1)
1214

1315
package conversion
1416

conversion/decimaltobinary.go

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Date: 14-Oct-2021
88
// https://en.wikipedia.org/wiki/Binary_number
99
// Function receives a integer as a Decimal number and returns the Binary number.
1010
// Supported integer value range is 0 to 2^(31 -1).
11+
// time complexity: O(log(n))
12+
// space complexity: O(1)
1113

1214
package conversion
1315

conversion/inttoroman.go

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// inttoroman.go
2+
// description: Convert an integer to a roman numeral
3+
// details: This program converts an integer to a roman numeral. The program uses a lookup array to convert the integer to a roman numeral.
4+
// time complexity: O(1)
5+
// space complexity: O(1)
6+
17
package conversion
28

39
import (

conversion/rgbhex.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// rgbhex.go
22
// description: convert hex input to red, green and blue and vice versa
3+
// time complexity: O(1)
4+
// space complexity: O(1)
35
// author(s) [darmiel](https://github.com/darmiel)
46
// see rgbhex_test.go
57

conversion/romantoint.go

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
// Function receives a string as a roman number and outputs an integer
44
// Maximum output will be 3999
55
// Only standard form is supported
6+
// time complexity: O(n)
7+
// space complexity: O(1)
68

79
package conversion
810

dynamic/abbreviation.go

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// Given a = "ABcde" and b = "ABCD"
1212
// We can capitalize "c" and "d" in a to get "ABCde" then delete all the lowercase letters (which is only "e") in a to get "ABCD" which equals b.
1313
// Author: [duongoku](https://github.com/duongoku)
14+
// Time Complexity: O(n*m) where n is the length of a and m is the length of b
15+
// Space Complexity: O(n*m) where n is the length of a and m is the length of b
1416
// See abbreviation_test.go for test cases
1517

1618
package dynamic

dynamic/binomialcoefficient.go

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// binomialcoefficient.go
2+
// description: Implementation of the binomial coefficient using dynamic programming
3+
// details: The binomial coefficient C(n, k) is the number of ways to choose a subset of k elements from a set of n elements. The binomial coefficient is calculated using the formula C(n, k) = C(n-1, k-1) + C(n-1, k) with base cases C(n, 0) = C(n, n) = 1.
4+
// time complexity: O(n*k) where n is the number of elements and k is the number of elements to choose
5+
// space complexity: O(n*k) where n is the number of elements and k is the number of elements to choose
16
package dynamic
27

38
import "github.com/TheAlgorithms/Go/math/min"

dynamic/catalan.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//The Catalan numbers are a sequence of positive integers that appear in many counting
2-
//problems in combinatorics.
2+
// problems in combinatorics.
3+
// time complexity: O(n²)
4+
// space complexity: O(n)
35
//reference: https://brilliant.org/wiki/catalan-numbers/
46

57
package dynamic

dynamic/coinchange.go

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// coinchange.go
2+
// description: Implementation of the coin change problem using dynamic programming
3+
// details: The coin change problem is a problem that asks for the number of ways to make change for a given amount of money using a given set of coins. The problem can be solved using dynamic programming.
4+
// time complexity: O(n*m) where n is the number of coins and m is the amount of money
5+
// space complexity: O(m) where m is the amount of money
6+
17
package dynamic
28

39
// CoinChange finds the number of possible combinations of coins

dynamic/editdistance.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// EDIT DISTANCE PROBLEM
2+
// time complexity: O(m * n) where m and n are lengths of the strings, first and second respectively.
3+
// space complexity: O(m * n) where m and n are lengths of the strings, first and second respectively.
24
// https://www.geeksforgeeks.org/edit-distance-dp-5/
35
// https://leetcode.com/problems/edit-distance/
46

dynamic/fibonacci.go

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// fibonacci.go
2+
// description: Implementation of the Fibonacci sequence using dynamic programming
3+
// time complexity: O(n)
4+
// space complexity: O(1)
15
package dynamic
26

37
// https://www.geeksforgeeks.org/program-for-nth-fibonacci-number/

dynamic/knapsack.go

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ package dynamic
22

33
// Knapsack Problem
44
// https://www.geeksforgeeks.org/0-1-knapsack-problem-dp-10/
5+
// https://en.wikipedia.org/wiki/Knapsack_problem
6+
// time complexity: O(n*maxWeight)
7+
// space complexity: O(n*maxWeight)
58

69
import (
710
"math"

dynamic/longestcommonsubsequence.go

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
// LONGEST COMMON SUBSEQUENCE
22
// DP - 4
33
// https://www.geeksforgeeks.org/longest-common-subsequence-dp-4/
4+
// https://leetcode.com/problems/longest-common-subsequence/
5+
// time complexity: O(m*n) where m and n are lengths of the strings
6+
// space complexity: O(m*n) where m and n are lengths of the strings
47

58
package dynamic
69

dynamic/longestincreasingsubsequence.go

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
// longestincreasingsubsequence.go
2+
// description: Implementation of the Longest Increasing Subsequence using dynamic programming
3+
// reference: https://en.wikipedia.org/wiki/Longest_increasing_subsequence
4+
// time complexity: O(n^2)
5+
// space complexity: O(n)
6+
17
package dynamic
28

39
import (

dynamic/longestpalindromicsubsequence.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// longest palindromic subsequence
2+
// time complexity: O(n^2)
3+
// space complexity: O(n^2)
24
// http://www.geeksforgeeks.org/dynamic-programming-set-12-longest-palindromic-subsequence/
35

46
package dynamic

dynamic/matrixmultiplication.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// matrix chain multiplication problem
22
// https://en.wikipedia.org/wiki/Matrix_chain_multiplication
33
// www.geeksforgeeks.org/dynamic_programming-set-8-matrix-chain-multiplication/
4+
// time complexity: O(n^3)
5+
// space complexity: O(n^2)
46

57
package dynamic
68

dynamic/rodcutting.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
// Solution to Rod cutting problem
22
// https://en.wikipedia.org/wiki/Cutting_stock_problem
33
// http://www.geeksforgeeks.org/dynamic-programming-set-13-cutting-a-rod/
4+
// time complexity: O(n^2)
5+
// space complexity: O(n)
46

57
package dynamic
68

dynamic/subsetsum.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
//Given a set of non-negative integers, and a (positive) value sum,
22
//determine if there is a subset of the given set with sum
33
//equal to given sum.
4-
//Complexity: O(n*sum)
4+
// time complexity: O(n*sum)
5+
// space complexity: O(n*sum)
56
//references: https://www.geeksforgeeks.org/subset-sum-problem-dp-25/
67

78
package dynamic

dynamic/traprainwater.go

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
// It uses dynamic programming to precompute the maximum height of bars to the left and right of each position.
66
// Then, it iterates through the array to calculate the amount of trapped rainwater at each position based on the minimum of the left and right maximum heights.
77
// Finally, it sums up the trapped rainwater for all positions and returns the total amount.
8+
// time complexity: O(n)
9+
// space complexity: O(n)
810
// author(s) [TruongNhanNguyen (SOZEL)](https://github.com/TruongNhanNguyen)
911
package dynamic
1012

dynamic/uniquepaths.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
// See https://leetcode.com/problems/unique-paths/
2+
// time complexity: O(m*n) where m and n are the dimensions of the grid
3+
// space complexity: O(m*n) where m and n are the dimensions of the grid
24
// author: Rares Mateizer (https://github.com/rares985)
35
package dynamic
46

0 commit comments

Comments
 (0)