diff --git a/annotated.html b/annotated.html index 02b6c8334..d86facf53 100644 --- a/annotated.html +++ b/annotated.html @@ -4,7 +4,7 @@
- +Prime Factorization is a very important and useful technique to factorize any number into its prime factors. It has various applications in the field of number theory.
-The method of prime factorization involves two function calls. First: Calculating all the prime number up till a certain range using the standard Sieve of Eratosthenes.
-Second: Using the prime numbers to reduce the the given number and thus find all its prime factors.
-The complexity of the solution involves approx. O(n logn) in calculating sieve of eratosthenes O(log n) in calculating the prime factors of the number. So in total approx. O(n logn).
-Requirements: For compile you need the compiler flag for C++ 11
-STL iterator class. + More...
+STL iterator class.
+![]() |
+
+ TheAlgorithms/C++ 1.0.0
+
+ All the algorithms implemented in C++
+ |
+
This is the complete list of members for HKGraph, including all inherited members.
+| addEdge(int u, int v) | HKGraph | |
| adj | HKGraph | private |
| bfs() | HKGraph | |
| dfs(int u) | HKGraph | |
| dist | HKGraph | private |
| HKGraph() | HKGraph | |
| HKGraph(int m, int n) | HKGraph | |
| hopcroftKarpAlgorithm() | HKGraph | |
| INF (defined in HKGraph) | HKGraph | private |
| m | HKGraph | private |
| n | HKGraph | private |
| NIL (defined in HKGraph) | HKGraph | private |
| pair_u | HKGraph | private |
| pair_v | HKGraph | private |