Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 639 Bytes

File metadata and controls

31 lines (20 loc) · 639 Bytes

Resizable-Array-Python

Resizeable(Dynamic) Array is the group project of Data Structures and Algorithms Created by Farzan ul Haq and Sufyan Nasir.

Documentation

Operations

Following are the operations of this project:

-Insert

It will insert value at the given index.

-update

It will update the value at the given index.

-get:

Get the value of the given index.

-remove

It will remove the value of the given index.

-resize

This function will expand/shrink the array according to our need.

-traverse

Access each element (item) of an array and print them.

Compatibility

Python3 and upper versions.