Results 1 to 3 of 3

Thread: file in the in C++ language

  1. #1
    Davisricky is offline Senior Member
    Join Date
    Dec 2009
    Posts
    331
    Rep Power
    3

    Default file in the in C++ language

    I am working on one project where I use C++ language. I have little bit knowledge of the functions of the. But I don’t have knowledge of search (0 function of the C++ language. Therefore, I want to know about the search () function of the C++ language. Also, I want to know about use of the search () function in the coding of the C++ language. Any help would be appreciated.

  2. #2
    Garcíarobine is offline Senior Member
    Join Date
    Dec 2009
    Posts
    334
    Rep Power
    3

    Default

    The search () function can be used to discover the sub-sequences in the given particular range. The following code of the search () function in the C++ language as:

    Code:
    template <class FrwrdItrtr1, class FrwrdItrtr2>
       FrwrdItrtr1 search ( FrwrdItrtr1 fst1, FrwrdItrtr1 lst1,
                                 FrwrdItrtr2 fst2, FrwrdItrtr2 lst2 );

  3. #3
    RodríguezBrown is offline Senior Member
    Join Date
    Dec 2009
    Posts
    322
    Rep Power
    3

    Default

    Following are the parameters of the search (0 function of the C++ function:

    • fst2, lst2: These parameters used for the forward iterators to the final and primary location of sequence that can be searched for. The range used can be [fst2, lst2).

    • fst1, lst1: These parameters used for the forward iterators to the final and primary location of the sequence that can be searched. The range used is [fst1, lst1).

Similar Threads

  1. Replies: 1
    Last Post: 06-30-2010, 03:22 PM
  2. Language Translator for Mac
    By WilsonMartin in forum Operating System
    Replies: 2
    Last Post: 05-03-2010, 01:22 PM
  3. C# Language
    By Sofia dmello in forum General Software Terms
    Replies: 0
    Last Post: 01-13-2010, 10:21 AM
  4. XML language
    By aiantin465 in forum Programming
    Replies: 0
    Last Post: 07-05-2008, 09:56 AM
  5. HTML Language
    By aiantin465 in forum Programming
    Replies: 0
    Last Post: 07-05-2008, 09:24 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48