Fixing packages.
This commit is contained in:
parent
e91999749e
commit
4f45c5a479
@ -1,3 +1,5 @@
|
||||
package DataStructures.Graphs;
|
||||
|
||||
import java.util.*;
|
||||
class BellmanFord
|
||||
/*Implementation of Bellman ford to detect negative cycles. Graph accepts inputs in form of edges which have
|
||||
|
@ -1,4 +1,4 @@
|
||||
package DataStructures;
|
||||
package DataStructures.Queues;
|
||||
|
||||
import java.util.NoSuchElementException;
|
||||
|
||||
|
@ -1,3 +1,4 @@
|
||||
package DataStructures.Stacks;
|
||||
/**
|
||||
* Implementation of a stack using nodes.
|
||||
* Unlimited size, no arraylist.
|
||||
|
@ -1,3 +1,5 @@
|
||||
package DataStructures.Stacks;
|
||||
|
||||
/**
|
||||
* This class implements a Stack using a regular array.
|
||||
* <p>
|
||||
|
@ -1,3 +1,5 @@
|
||||
package DataStructures.Stacks;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
/**
|
||||
|
@ -1,5 +1,7 @@
|
||||
package DataStructures.Stacks;
|
||||
|
||||
import java.util.NoSuchElementException;
|
||||
|
||||
/**
|
||||
* @author Varun Upadhyay (https://github.com/varunu28)
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
package maths;
|
||||
package Maths;
|
||||
|
||||
//POWER (exponentials) Examples (a^b)
|
||||
public class Pow {
|
||||
|
Loading…
Reference in New Issue
Block a user