Fixing packages.

This commit is contained in:
Hassan 2020-01-28 18:18:15 +02:00
parent e91999749e
commit 4f45c5a479
7 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,5 @@
package DataStructures.Graphs;
import java.util.*; import java.util.*;
class BellmanFord class BellmanFord
/*Implementation of Bellman ford to detect negative cycles. Graph accepts inputs in form of edges which have /*Implementation of Bellman ford to detect negative cycles. Graph accepts inputs in form of edges which have

View File

@ -1,4 +1,4 @@
package DataStructures; package DataStructures.Queues;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;

View File

@ -1,3 +1,4 @@
package DataStructures.Stacks;
/** /**
* Implementation of a stack using nodes. * Implementation of a stack using nodes.
* Unlimited size, no arraylist. * Unlimited size, no arraylist.

View File

@ -1,3 +1,5 @@
package DataStructures.Stacks;
/** /**
* This class implements a Stack using a regular array. * This class implements a Stack using a regular array.
* <p> * <p>

View File

@ -1,3 +1,5 @@
package DataStructures.Stacks;
import java.util.ArrayList; import java.util.ArrayList;
/** /**

View File

@ -1,5 +1,7 @@
package DataStructures.Stacks; package DataStructures.Stacks;
import java.util.NoSuchElementException;
/** /**
* @author Varun Upadhyay (https://github.com/varunu28) * @author Varun Upadhyay (https://github.com/varunu28)
*/ */

View File

@ -1,4 +1,4 @@
package maths; package Maths;
//POWER (exponentials) Examples (a^b) //POWER (exponentials) Examples (a^b)
public class Pow { public class Pow {