1. Write a function that implements the find operation of a linked list denoted by HEAD. The function should return a re
Posted: Wed Apr 27, 2022 5:05 pm
Note: Solve this Assignment within 3 hours, using C++ programing
language. I'll give you thumbs up.
1. Write a function that implements the find operation of a linked list denoted by HEAD. The function should return a reference (pointer) to the node if found. It should return NULL/None if not found. 2. Define a class named "my_stack" that emulates a stack. It should have the following (public) methods push pop top Do not use library functions 3. Let, L, FIRST and END denote a list. Implement Queue operations using List data structure. Implement enqueue and dequeue functions. Do not use library functions.
language. I'll give you thumbs up.
1. Write a function that implements the find operation of a linked list denoted by HEAD. The function should return a reference (pointer) to the node if found. It should return NULL/None if not found. 2. Define a class named "my_stack" that emulates a stack. It should have the following (public) methods push pop top Do not use library functions 3. Let, L, FIRST and END denote a list. Implement Queue operations using List data structure. Implement enqueue and dequeue functions. Do not use library functions.