I am taking java data structures and algorithms class in school, and I am totally
lost on Array and Linked Structures, and if someone could please tell me some
good links or tutorials that explains well…thanks
array operation:
- traversing
- resizing
- replacing an element
- replacing an element
inserting an element - deleting an element
linked structure characteristics:
- SLNode
- traversing
- replacing an element
- replacing an element
- inserting an element
- deleting an element
First of all get the big picute and understand the difference between those two.
As mentioned in java doc
In simply it means when you declare an array it should you should give a size.
If you think about the linked data structues you’ll see they don’t have predefinde size. Its like a chain. You can link new nodes to any where on the chain.
Read this
For manipulation of those read flowing articles.
There are many linked data structures, But first learn ArrayList it might easy for you