Prompt user to input distance in Kilometers and display it in meters.
Program the following. Implement the following equation 3x4 sin(180x) + 4x3 cos(90x) + x2 sin(tan(45)) + 7x + 9cos(90x2 ) where x may be user defined value.
Write a program to perform transpose for a given sparse matrix. ( Row major order)
Write a program to represent a sparse matrix in three tuple format using linked list and write addition function to perform addition.
Create a list which contains float elements and then perform insert, delete, display, search and exit operations
Write a menu driven program to perform the following operations in a double linked list by
using suitable user defined functions for each case.
a) Traverse the list forward
b) Traverse the list backward
c) Check if the list is empty
d) Insert a node at the certain position (at beginning/end/any position)
e) Delete a node at the certain position (at beginning/end/any position)
f) Delete a node for the given key
g) Count the total number of nodes
h) Search for an element in the linked list
Verify & validate each function from main method.