CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: smrizvi1

Search: Search took 0.02 seconds.

  1. Re: Search book by its author from 1st record to last

    Thank you Mr. Paul
    I also wanted to know that is it possible search a particular string/char, having more than one word, by just a single word?? I mean If i want to search 'Lord of the rings' and i...
  2. Re: Search book by its author from 1st record to last

    my database would contain not more than a hundred books. so thats y i want to reduce it. and moreover i dont know how to do it that way. So also for learning purpose.
  3. Re: Search book by its author from 1st record to last

    my database would contain not more than a hundred books. so thats y i want to reduce it. and moreover i dont know how to do it that way. So also for learning purpose
  4. Re: Search book by its author from 1st record to last

    i have seen this version which resembles mine. can anyone change it to my requirements please?




    struct book // declare book class
    {
    int no;
    string author; // type name of string
    string...
  5. Re: Search book by its author from 1st record to last

    basically this is the sorting and searching code i have used and want to replace


    void SortByAUTHOR() // bubble sort
    {
    for(int i=0; i< countBOOK-1; i++){
    for(int j=0; j <countBOOK-1; j++){...
  6. Search book by its author from 1st record to last

    Hey everyone! i stuck here with a thing. I use this code to search a book by its author. I have used the approach of bubble sorting then binary searching.

    Alright, now this is what i have. what...
  7. Re: c++ data structures program to search records by different fields

    My boss asks for atleast the file handling code till coming monday. Where as i have to submit the whole task ,on visual c++, by the end of next week! Sir, i dont have time to study the whole picture...
  8. Re: c++ data structures program to search records by different fields

    what I have done is this

    struct book // declare class
    {
    int no;
    string author; // type name of string
    string book; // type name of string
    string genre; // type name of string

    book* next;...
  9. Re: c++ data structures program to search records by different fields

    what I have done is this

    struct book // declare class
    {
    int no;
    string author; // type name of string
    string book; // type name of string
    string genre; // type name of string

    book*...
  10. [RESOLVED] c++ data structures program to search records by different fields

    I work in a small library and have been given a task to make a program. To make things short, i have copied all my records to a text file

    Book name---------------Author
    1.Lord of the rings,J. R R...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured