What is a linked list?
Answers were Sorted based on User's Feedback
Answer / e-mail
Link list is a collection of either diffrent diffrent data
or same type of data which is store in a node,basically
node contain non premitive data witch is divided into two
parts one part contain data and another part contain
address of next node..
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / purba phalguni mishra
" Linked List is a collection of data elements consisting
of nodes", basically two parts:-
1. INFO part- contains the information/value of data items.
2.LINK part- keeps the address of the adjacent node,i.e,
co-relating notes.
The basic application,i.e, the linear arrangement of data
items gives the fundamental idea of array.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / swati sinha
Linked list is a datastructure which consist of many nodes
linked wit each other.Each node is divided in to
2parts.one has the data and the other has address which
points to the next node.the last node has null pointer.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / aditya
A Linked List is the collection of leniar data elements. In
linked list there will be nodes which has 2 parts. They are
data part and link part. The data part consists of the th
data element and the link part consists of the address of
the next node. In linked list the link part of the last
node will be NULL. The different types of linked list are
1) Linear Linked List
2) Double Linked List
3) Circular Linked List
4) Doule Circular Linked List
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rashid
A linked list is a linear collection of self referential
structs. LL consists of nodes connected by pointer links.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / abu
A linked list is liner collection of data elements that are
called nodes. the linear order is maintained by using
pointer.a link list can be either liner or doubly or circular.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nashiinformaticssolutions
Similar to an array, a linked list is a linear data structure where the components aren't always kept together.
In essence, it is a series of nodes that form a chain-like structure by pointing in the direction of the next node.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Similar to an array, a linked list is a linear data structure where the components aren't always kept together.
In essence, it is a series of nodes that form a chain-like structure by pointing in the direction of the next node.
| Is This Answer Correct ? | 0 Yes | 0 No |
Similar to an array, a linked list is a linear data structure where the components aren't always kept together.
In essence, it is a series of nodes that form a chain-like structure by pointing in the direction of the next node.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / venu
link list is a list that is used to sort by the names
| Is This Answer Correct ? | 1 Yes | 8 No |
What is the difference between class and object?
What is Iteration Hierarchy? What is what is Object behavioral concept?
What is encapsulation and abstraction? How are they implemented in C++?
0 Answers Agilent, ZS Associates,
In multiple inheritance , to create sub class object , is there need to create objects for its superclasses??? in java and c++ both. Actually i have some information that is , all available members from its superclasses , memory created in subclass obj , so no need to create object for its superclasses...??? Thanks in Advance
what is new operator in c++
What is sub classing in c++?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
whats the difference between c and c++
There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
What is difference between #define and const?
Why do we use inheritance?
Objective The objective of this problem is to test the understanding of Object-Oriented Programming (OOP) concepts, in particular, on encapsulation. Problem Description Create a program for managing customer’s bank accounts. A bank customer can do the following operations: 1. Create a new bank account with an initial balance. 2. Deposit money into his/her account. 3. Withdraw money from his/her account. For this operation, you need to output “Transaction successful” if the intended amount of money can be withdrawn, otherwise output “Transaction unsuccessful” and no money will be withdrawn from his/her account. Input The input contains several operations and is terminated by “0”. The operations will be “Create name amount”, “Deposit name amount”, or “Withdraw name amount”, where name is the customer’s name and amount is an integer indicating the amount of money. There will be at most 100 bank accounts and they are all created on the first month when the bank is opening. You may assume that all account holders have unique names and the names consist of only a single word. Output The output contains the transaction result of withdrawal operations and the final balance of all customers after some withdrawal and deposit operations (same order as the input). Sample Input Create Billy 2500 Create Charlie 1000 Create John 100 Withdraw Charlie 500 Deposit John 899 Withdraw Charlie 1000 0