- Part2 Exercise 10 Marks Update The Previous Example To Build A Linked List That Contains Integers As Follows T 1 1 (44.25 KiB) Viewed 28 times
Part2 Exercise: [10 marks] Update the previous example to build a linked list that contains integers as follows: ¹ T 1-
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Part2 Exercise: [10 marks] Update the previous example to build a linked list that contains integers as follows: ¹ T 1-
Part2 Exercise: [10 marks] Update the previous example to build a linked list that contains integers as follows: ¹ T 1- Use the push function to add (8, 14, 16, 2, 20,45) to the linked list 2- Print the list 3- [5 marks] Write a c function that searches for a given value in the linked list. Enter the number you want to search in the List 2 element found 4- [5 marks]Write a c function that returns the maximum value in the list the Maximum number in the list is 45 5- [5 marks]Write a c function that counts the occurrence of the given value Enter the number you want to check for occurence in the List 2 the number 2 appears 2 times in the list