template function for compacting the items : Function Template « Function « C++

Home
C++
1.Bitset
2.Class
3.Console
4.Data Structure
5.Data Type
6.Deque
7.Development
8.File
9.Function
10.Generic
11.Language
12.List
13.Map Multimap
14.Overload
15.Pointer
16.Qt
17.Queue Stack
18.Set Multiset
19.STL Algorithms Binary search
20.STL Algorithms Heap
21.STL Algorithms Helper
22.STL Algorithms Iterator
23.STL Algorithms Merge
24.STL Algorithms Min Max
25.STL Algorithms Modifying sequence operations
26.STL Algorithms Non modifying sequence operations
27.STL Algorithms Sorting
28.STL Basics
29.String
30.Valarray
31.Vector
C / ANSI-C
C Tutorial
C++ Tutorial
Visual C++ .NET
C++ » Function » Function TemplateScreenshots 
template function for compacting the items
  
#include <iostream>
using namespace std;
template <class X> void compact(X *items, int count, int start, int end);
template <class X> void show_items(X *items, int size);

int main(void)
{
   int nums[7=  {0123456};
   char str[18"Generic Functions";

   cout << "Here is uncompacted integer array: ";
   show_items(nums, 7);
   cout << "Here is the uncompacted char array: ";
   show_items(str, 18);
   compact(nums, 724);
   compact(str, 18610);
   cout << "Here is compacted integer array: ";
   show_items(nums, 7);
   cout << "Here is the compacted char array: ";
   show_items(str, 18);
}

template <class X> void compact(X *items, int count, int start, int end)
{
   register int i;
   for(i=end+i; i < count; i++, start++)
      items[start= items[i];
   for; start<count; start++)
      items[start(X0;
}

template <class X> void show_items(X *items, int size){
   int i;
   for(i=0; i < size; i++)
      cout << items[i];
   cout << endl;
}
  
    
  
Related examples in the same category
1.A generic mode finding function.A generic mode finding function.
2.Function template: swap valuesFunction template: swap values
3.Simple template function to accept two parametersSimple template function to accept two parameters
4.template function for find a valuetemplate function for find a value
5.Creating a custom algorithm based on templateCreating a custom algorithm based on template
6.find all template function
7.Using a Binary Function to Multiply Two Ranges
8.Making a Sequence of Random Numbers
9.write function object
10.Use a Function Object to Hold state
11.template function for bubble sort
12.Template copy array function
13.function template for getting the max value
14.Overriding a template function.
15.Using Standard Parameters with Template Functions
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.