edited by
821 views

1 Answer

2 votes
2 votes
Linked List, Stack, and Tables are Abstract Data Type (ADT). They can can be accessed through some well-defined operations such as PUSH and POP in the case of Stack.

Whereas an array is a primitive data type that we can access and modified with low-level code such as memory offset or index. Hence array is a physical data structure.

Related questions

0 votes
0 votes
1 answer
1
go_editor asked Mar 27, 2020
572 views
When a function is recursively called, all automatic variables :are initialized during each execution of the functionare retained from the last executionare maintained in...
1 votes
1 votes
2 answers
2
go_editor asked Mar 27, 2020
6,520 views
What is the time required to insert an element in a stack with linked implementation ?$O (\log_2 n)$$O (n)$$O (n\log_2 n)$$O (1)$
0 votes
0 votes
2 answers
3
go_editor asked Mar 27, 2020
1,075 views
The equivalent postfix expression for $d{\large /}(e+f)+b*c$ :$defbc/++*$$def+/bc+*$$def+/bc*+$None of these
0 votes
0 votes
1 answer
4
go_editor asked Mar 27, 2020
1,531 views
Which of the regular expressions corresponds to this grammar ?$S → AB/AS, A → a/aA, B → b$$aa^*b^+$$aa^*b$$(ab)^*$$a(ab)^*$