Abhinaw TripathiSep 9, 20162 min readBest approach to download thousands of images over the Network(in Parallel or Queue Worker Threads) Let me be more specific on it,interviewer asked me this question,if you have to download many images like 1000 thousands.how will you do...
Abhinaw TripathiJun 9, 20161 min readQueue implemented by a Linked List in core-javaQueue implemented by a Linked List: /** * @author Abhinaw.Tripathi * */ class Link { public long dData; public Link next; public...