What are you looking for?
Send in My Email
Categories
- Algorithms and Data Structures (9)
- Arrays Text DSA (1)
- List Data Structure Text DSA (2)
- Queues Text DSA (1)
- Stacks Text DSA (1)
- Trees (1)
- Blogging and Bloggers (65)
- Blogger (11)
- Create Blogs (12)
- Domain Names (1)
- How To (27)
- ICT Trends (2)
- Internet (1)
- Monetize Blogs (10)
- Promote Blogs (22)
- SEO (24)
- Social Netowrks (2)
- Digg (2)
- Tips and Tricks (45)
- WordPress (14)
- C++ (10)
- Examples (5)
- Source Codes (4)
- Computer Operator Exam Preparation (15)
- Downloads (16)
- From the desk of Admin (7)
- IT and Law (3)
- MCQ Bank (8)
- Bank PO (1)
- Microsoft Word (27)
- MS Word 2003 (20)
- MS Word 2010 (7)
- MS Access (1)
- MS Excel (3)
- Off Topics (28)
- Online MCQ Test (9)
- Practical Questions (3)
- Preparation (9)
- Question Papers (8)
- Questions and Answers (11)
- Computer Officer (5)
- References (7)
- System Analysis and Design (2)
- Trainings and Tutorials (8)
- MS Excel (1)
- Tutorials & How Tos (13)
- Algorithms and Data Structures (9)
Friends from Facebook
ICT Trends on FacebookTwitter Friends
Sponsors
UserOnline
Users: 7 Guests
Category Archives: Arrays Text DSA
Differences between Linked List and Arrays
Linked lists are data structure which are the self-referential class objects called nodes. Each nodes are connected by reference links. Make yourself clear that linked lists are not dynamically sized array.
An array is data structure (type of memory layout) that stores a collection of individual values that are of the same data type. Arrays are useful because instead of having to separately store related information in different variables (named memory locations), you can store them—as a collection—in just one variable. It is more efficient for a program to access and process the information in an array, than it is…

