plz solution this programe????????????
-
. Create a List [ Create a list that will be empty at the creation time. Make void create( void ) function to achieve this task. ] 2. Determine whether the list is empty. [ Make bool empty( void ) function that shows whether the list is empty or not.] 3. Insert a Value at the start of the list [ Make void addatstart( int ) function to insert value at the start of the list.] at the given location [ Make void addatspecific( int, int ) function to insert value at the specific location in the list.] at the end of the list [ Make void addatend( int ) function to insert value at the end of the list.] 4. Delete at the start of the list [ Make void deleteatstart( void ) function to delete value from the start of the list.] at the given location [ Make void deleteatspeific(void) function to delete value at the specific location of the list.] at the end of the list [ Make void deleteatend(void) function to delete value at the end of the list.] 5. Size of the List [ Make int size(void) function that will return the size of the list.] 6. Search value from the list. [ Make void search( int ) function that will search the given value in list.] 7. Swapping two values of the list. [ Make void swap( int first_location, int second_location ) function that will swap the values at the given location from the list.] 8. Display the list [ Make void search(void) function that will display the list values.]
-
. Create a List [ Create a list that will be empty at the creation time. Make void create( void ) function to achieve this task. ] 2. Determine whether the list is empty. [ Make bool empty( void ) function that shows whether the list is empty or not.] 3. Insert a Value at the start of the list [ Make void addatstart( int ) function to insert value at the start of the list.] at the given location [ Make void addatspecific( int, int ) function to insert value at the specific location in the list.] at the end of the list [ Make void addatend( int ) function to insert value at the end of the list.] 4. Delete at the start of the list [ Make void deleteatstart( void ) function to delete value from the start of the list.] at the given location [ Make void deleteatspeific(void) function to delete value at the specific location of the list.] at the end of the list [ Make void deleteatend(void) function to delete value at the end of the list.] 5. Size of the List [ Make int size(void) function that will return the size of the list.] 6. Search value from the list. [ Make void search( int ) function that will search the given value in list.] 7. Swapping two values of the list. [ Make void swap( int first_location, int second_location ) function that will swap the values at the given location from the list.] 8. Display the list [ Make void search(void) function that will display the list values.]
Sorry, but no one is going to do your homework for you. Make an effort to solve the problem for yourself and people will try to help you when you get stuck, but you are expected to do most of the work. After all, an assignment is designed to test how much you have learned, not how much we know.
-
. Create a List [ Create a list that will be empty at the creation time. Make void create( void ) function to achieve this task. ] 2. Determine whether the list is empty. [ Make bool empty( void ) function that shows whether the list is empty or not.] 3. Insert a Value at the start of the list [ Make void addatstart( int ) function to insert value at the start of the list.] at the given location [ Make void addatspecific( int, int ) function to insert value at the specific location in the list.] at the end of the list [ Make void addatend( int ) function to insert value at the end of the list.] 4. Delete at the start of the list [ Make void deleteatstart( void ) function to delete value from the start of the list.] at the given location [ Make void deleteatspeific(void) function to delete value at the specific location of the list.] at the end of the list [ Make void deleteatend(void) function to delete value at the end of the list.] 5. Size of the List [ Make int size(void) function that will return the size of the list.] 6. Search value from the list. [ Make void search( int ) function that will search the given value in list.] 7. Swapping two values of the list. [ Make void swap( int first_location, int second_location ) function that will swap the values at the given location from the list.] 8. Display the list [ Make void search(void) function that will display the list values.]
-
Sorry, but no one is going to do your homework for you. Make an effort to solve the problem for yourself and people will try to help you when you get stuck, but you are expected to do most of the work. After all, an assignment is designed to test how much you have learned, not how much we know.
Richard MacCutchan wrote:
After all, an assignment is designed to test how much you have learned, not how much we know.
Truer words have never been spoken typed. :thumbsup:
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
-
Richard MacCutchan wrote:
After all, an assignment is designed to test how much you have learned, not how much we know.
Truer words have never been spoken typed. :thumbsup:
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles