Abhinaw TripathiAug 26, 20162 min readThe Stock Span Problem Solution in JavaThe Stock Span Problem The stock span problem is a financial problem where we have a series of n daily price quotes for a stock and we...
Abhinaw TripathiJun 17, 20161 min readLinkedHashSet Class and Stack Class JavaLinkedHashSet Class This is a subclass of HashSet class and does not contain any additional members on its own.It is a generic class that...
Abhinaw TripathiJun 9, 20161 min readA Stack Implemented by a Linked List in core-javaStack implementation by a Linked List: /** * @author Abhinaw.Tripathi * */ class Link { public long dData; public Link next; public...