Total members 11890 |It is currently Fri Apr 19, 2024 11:23 pm Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Generic Algorithm Code
cpp code
#include <iostream>
using namespace std;

template <class X> X sum(X *data, int size)
{
int i;
X result = 0;

for(i = 0; i <size; i++) result += data[ i ];

return result;
}

int main()
{
int i[] = {1, 2, 3, 4};
double d[] = {1.1, 2.2, 3.3, 4.4};

cout << sum(i, 4) << endl;
cout << sum(d, 4) << endl;

return 0;
}




_________________
Please recommend my post if you found it helpful


Author:
Beginner
User avatar Posts: 95
Have thanks: 2 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Generic Algorithm
 generic queue     -  
 Need help with generic listeners     -  
 id3 algorithm     -  
 Data set for ID3 algorithm     -  
 CPU priority algorithm...     -  
 Dijkstra Algorithm     -  
 Rijndael Algorithm     -  
 genetic algorithm example     -  
 hungarian algorithm java     -  
 DDA Line Drawing Algorithm     -  



Topic Tags

C++ Algorithms
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com