You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementing linked list with its operations.
first ---> returns the first element in the list
rest --> return the list without the first element
insert --> add an element to an index or last
check whether an element is in the list
length --> return the length of the list
delete--> delete an element in the list
This can be implemented in any programming language.
The text was updated successfully, but these errors were encountered:
Implementing linked list with its operations.
first ---> returns the first element in the list
rest --> return the list without the first element
insert --> add an element to an index or last
check whether an element is in the list
length --> return the length of the list
delete--> delete an element in the list
This can be implemented in any programming language.
The text was updated successfully, but these errors were encountered: