Category: Data Structures

  • Data Structure Problems

    Reverse Array : Reverse the given array by using temporary variable. Output : Rotate an array : Rotate the given array with respect to the number of times.

    Read article →

  • Commonly used Data Structures : Java

    Arrays Stacks Queues Linked Lists Trees Graphs Hash-table Arrays: An array is the simplest and most widely used data structure. Other data structures like stacks and queues are derived from arrays. Here’s an image of a simple array of size 4, containing elements (1, 2, 3 and 4). The following are the two types of

    Read article →