31.5k views
0 votes
One of the following is NOT a basic linked list operation:_________.

a) search
b) insert
c) create
d) delete
e) traverse
f) destroy
g) build list from file

User Lonerunner
by
4.8k points

1 Answer

0 votes

Answer:

One of the following is NOT a basic linked list operation:_________.

g) build list from file

Step-by-step explanation:

Linked list operation is the creation of trees and graphs or a chain of data elements, which are called nodes. Each note points to the next using a pointer. In linked lists, each node consists of its own data and the address of the next node. A linked list, which may be single, double, or circular, forms a chain-like structure that builds from one node to the other.

User Jay Momaya
by
4.6k points