Data-Structures-In-Java icon indicating copy to clipboard operation
Data-Structures-In-Java copied to clipboard

Data Structures implemented in Java

Results 4 Data-Structures-In-Java issues
Sort by recently updated
recently updated
newest added

Handled an index out of bounds case when removing a valid element from a non empty customArrayList. Refer to the issue https://github.com/deepak-malik/Data-Structures-In-Java/issues/2. Added a boundary check when removing the elements.

![Screenshot from 2020-10-13 16-44-06](https://user-images.githubusercontent.com/17764274/95853654-657ca600-0d73-11eb-9ee9-74ffbfe23a82.png) ![Screenshot from 2020-10-13 16-44-54](https://user-images.githubusercontent.com/17764274/95853688-70cfd180-0d73-11eb-8b6f-9944f8242b99.png) Steps to replicate : 1) Set initial size of array to 1; 2) add a few elements 3) try deleting an element...

`package com.deepak.data.structures.LinkedList; public class theGame { public static void main(String[] args) { CircularLinkedList g = new CircularLinkedList(); int [] t = {15, 14, -12, 7, -7, 20, 13, 1, -15,...