RapidKode is a Python package that provides fast, flexible, and expressive data structures,alogorithms designed to make working with both competitive programming and coding easy and intuitive. It aims to be the fundamental high-level building block for competitive programming in Python.
PythonMIT
RapidKode: get it right the first time
RapidKode is a Python package that provides fast, flexible, and expressive data structures,alogorithms designed to make working with both competitive programming and coding easy and intuitive. It aims to be the fundamental high-level building block for competitive programming in Python.With RapidKode you can perform complex algorithms in less time, all the algorithms are optimized to their finest to reduce time complexity to make you stand out in the leader board. There is no more time wasting writing huge chucks of code and debugging them later, With RapidKode everything happens at your fingertips with just a single line of code. The aim of Rapidkode is to help beginners get started in competative programing, understand the importance of time and space. The motto of making Rapidkode is to 'Get it right the first time' instead of spending 10's of precious minutes on util functions.
Installation:
Install from the official pypi website -> Click Here
or
$ pipinstallrapidkode
For issues,bug reports and contributions visit the development repo --> Click Here
Available Functions :
Number functions :
syntax
operation
numbers.gen_sparsenum_upto(x)
generates sparse number upto the given range
numbers.get_sparsenum_after(n)
Returns the succeding sparse number for the given number
Binary search is the search technique that works efficiently on sorted lists
. Hence, to search an element into some list using the binary search technique, we must ensure that the list is sorted
. Binary search follows the divide and conquer approach in which the list is divided into two halves, and the item is compared with the middle element of the list
. If the match is found then, the location of the middle element is returned
. Otherwise, we search into either of the halves depending upon the result produced through the match
Algorithm
Step 1 - Read the search element from the user.
Step 2 - Find the middle element in the sorted list.
Step 3 - Compare the search element with the middle element in the sorted list.
Step 4 - If both are matched, then display "Given element is found!!!" and terminate the function.
Step 5 - If both are not matched, then check whether the search element is smaller or larger than the middle element.
Step 6 - If the search element is smaller than middle element, repeat steps 2, 3, 4 and 5 for the left sublist of the middle element.
Step 7 - If the search element is larger than middle element, repeat steps 2, 3, 4 and 5 for the right sublist of the middle element.
Step 8 - Repeat the same process until we find the search element in the list or until sublist contains only one element.
Step 9 - If that element also doesn't match with the search element, then display "Element is not found in the list!!!" and terminate the function.
The three functions .show(), .info(), .algo() can be used for all the 6 searching techniques.
Counting sort is a sorting algorithm that sorts the elements of an array by counting the number of occurrences of each unique element in the array
. The count is stored in an auxiliary array and the sorting is done by mapping the count as an index of the auxiliary array
. Counting sort is a sorting technique based on keys between a specific range
. It works by counting the number of objects having distinct key values (kind of hashing)
. Then doing some arithmetic to calculate the position of each object in the output sequence
Algorithm
step 1 - Find out the maximum element (let it be max) from the given array.
step 2 - Initialize an array of length max+1 with all elements 0.
This array is used for storing the count of the elements in the array.
step 3 - Store the count of each element at their respective index in count array
For example: if the count of element 3 is 2 then, 2 is stored in the 3rd position of count array.
If element "5" is not present in the array, then 0 is stored in 5th position.
step 4 - Store cumulative sum of the elements of the count array.
It helps in placing the elements into the correct index of the sorted array.
step 5 - Find the index of each element of the original array in the count array.
This gives the cumulative count. Place the element at the index calculated as shown in figure below.
step 6 - After placing each element at its correct position, decrease its count by one.
The three functions .show(), .info(), .algo() can be used for all the 13 sorting techniques.
Graph Functions :
Syntax
Operation
.buildedge(u,v)
Create an Graph Edge
.buildmultiedge([])
Creates an Graph with given Coord list
.BFS(x)
Perform Breadth First Search
.DFS(x)
Performs Depth First Search
.findAP()
Returns the Articulation Point of the graph
Example:
importrapidkodeasrk# make graph object with graph() classmy_graph=rk.graph()
# adding one edge at a timemy_graph.buildedge(0, 1)
my_graph.buildedge(0, 2)
my_graph.buildedge(1, 2)
my_graph.buildedge(2, 0)
my_graph.buildedge(2, 3)
my_graph.buildedge(3, 3)
importrapidkodeasrk# make graph object with graph() classmy_graph=rk.graph()
# adding multiple edges at oncemy_graph.buildmultiedge([0,1,0,2,1,2,2,0,2,3,3,3])
importrapidkodeasrk# make graph object with graph() classmy_graph=rk.graph()
my_graph.buildmultiedge([0,1,0,2,1,2,2,0,2,3,3,3])
# performing BFS from edge 2print(my_graph.BFS(2))
# performing DFS from edge 2print(my_graph.DFS(2))
# finding the Articulation Pointprint(my_graph.findAP())
The following function uses Rabin-Karp algorithm which is an algorithm used for searching/matching patterns in the text using a hash function. Unlike Naive string matching algorithm, it does not travel through every character in the initial phase rather it filters the characters that do not match and then performs the comparison.
Syntax
Operation
pattern.isthere(a).inn(b)
Returns true if string a is present in string b
pattern.whereis(a).inn(b)
Returns the index position of string a in string b
# insertion at beginningmy_list.ins_beg(rk.node('A'))
# insertion at endmy_list.ins_end(rk.node('G'))
# insertion at positiommy_list.ins_after('e',rk.node('E'))
# insertion at positionmy_list.ins_before('c',rk.node('C'))
# deletion of ndoemy_list.del_node('b')
# returning as listmy_listt=my_list.return_as_list()
print(my_list)
print(my_listt)
Output :
A -> a -> C -> c -> d -> e -> E -> f -> g -> G -> None
['A', 'a', 'C', 'c', 'd', 'e', 'E', 'f', 'g', 'G', 'None']