Fixing packages.
This commit is contained in:
parent
e91999749e
commit
4f45c5a479
@ -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
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package DataStructures;
|
package DataStructures.Queues;
|
||||||
|
|
||||||
import java.util.NoSuchElementException;
|
import java.util.NoSuchElementException;
|
||||||
|
|
||||||
|
@ -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.
|
||||||
|
@ -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>
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
package DataStructures.Stacks;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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)
|
||||||
*/
|
*/
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package maths;
|
package Maths;
|
||||||
|
|
||||||
//POWER (exponentials) Examples (a^b)
|
//POWER (exponentials) Examples (a^b)
|
||||||
public class Pow {
|
public class Pow {
|
||||||
|
Loading…
Reference in New Issue
Block a user