Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Video Store Program) Using classes to implement the video data, video list data,

ID: 3628086 • Letter: V

Question

Video Store Program) Using classes to implement the video data, video list data, customer data, and customer list data, as design in this chapter and in Programming Exercises 12 and 13, design and complete the program to put the video store into operation

Program for Chapter 11 and 13 is here:

http://books.google.com/books?id=NXH_fbFDfSgC&pg=PA1023&lpg=PA1023&dq=Data+Structures+using+C%2B%2B+%22Programming+Example+Video+Store%22&source=bl&ots=TiXhcLaN8t&sig=BpMZeUQO-saBypyVmzE9nwhlGKA&hl=en&ei=HXofTbHCI8T38AbLkYD_DQ&sa=X&oi=book_result&ct=result&resnum=6&ved=0CDMQ6AEwBQ#v=onepage&q&f=false

Explanation / Answer

is this what u r looking for ? #ifndef H_VideoLinkedListType #define H_VideoLinkedListType #include #include #include "binarySearchTree.h" #include "videoType.h" using namespace std; class videoBinaryTree:public bSearchTreeType { public: bool videoSearch(string title); //Function to search the list to see whether a //particular title, specified by the parameter title, //is in the store. //Postcondition: Returns true if the title is found, // and false otherwise. bool isVideoAvailable(string title); //Function to determine whether a copy of a particular //video is in the store. //Postcondition: Returns true if at least one copy of the // video specified by title is in the store, // and false otherwise. void videoCheckIn(string title); //Function to check in a video returned by a customer. //Postcondition: copiesInStock is incremented by one. void videoCheckOut(string title); //Function to check out a video, that is, rent a video. //Postcondition: copiesInStock is decremented by one. bool videoCheckTitle(string title) const; //Function to determine whether a particular video is in //the store. //Postcondition: Returns true if the video