Click here to Skip to main content
15,896,726 members
Home / Discussions / Algorithms
   

Algorithms

 
GeneralRe: Algorithm Sum From Offset To Number[Edited] Pin
dusty_dex18-Jun-13 13:20
dusty_dex18-Jun-13 13:20 
GeneralRe: Algorithm Sum From Offset To Number[Edited] Pin
A*****18-Jun-13 13:24
A*****18-Jun-13 13:24 
AnswerRe: Algorithm Sum From Offset To Number Pin
Bernhard Hiller18-Jun-13 20:57
Bernhard Hiller18-Jun-13 20:57 
GeneralRe: Algorithm Sum From Offset To Number Pin
dusty_dex18-Jun-13 22:38
dusty_dex18-Jun-13 22:38 
QuestionWikipedia's comments on Interpolation Search Pin
harold aptroot11-Jun-13 0:59
harold aptroot11-Jun-13 0:59 
AnswerRe: Wikipedia's comments on Interpolation Search Pin
Alan Balkany13-Jun-13 8:27
Alan Balkany13-Jun-13 8:27 
GeneralRe: Wikipedia's comments on Interpolation Search Pin
harold aptroot13-Jun-13 8:59
harold aptroot13-Jun-13 8:59 
Questionalgorithm that finds the m smallest numbers in a list of numbers Pin
demo 29-Jun-13 21:00
demo 29-Jun-13 21:00 
Hi guys I have a list of numbers i did algorithm to find the smallest number on that list

C++
# include<iostream>
# include<String>
using namespace std;
int main(){
 cout << "The Smallest Number on that list is: "<<  SmalList(  a ,size);

}

int SmalList(int a[], int size){

	int xsmall=a[0];

	for (int i=0; size>i; i++){
	
		if( a[i]<xsmall){
		
			xsmall=a[i];
		 
		}
	
	}
	return xsmall;
}


but i'm trying to find algorithm that can find two or more n smallest number on that list.

for example the list is A[]={2,4,8,3,1}

how can I find the the three smallest number from that list.
the function should return a list with three numbers
AnswerRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan9-Jun-13 21:14
mveRichard MacCutchan9-Jun-13 21:14 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
demo 29-Jun-13 23:50
demo 29-Jun-13 23:50 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan9-Jun-13 23:53
mveRichard MacCutchan9-Jun-13 23:53 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
demo 210-Jun-13 0:07
demo 210-Jun-13 0:07 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan10-Jun-13 0:13
mveRichard MacCutchan10-Jun-13 0:13 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
demo 210-Jun-13 0:24
demo 210-Jun-13 0:24 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan10-Jun-13 0:31
mveRichard MacCutchan10-Jun-13 0:31 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
demo 210-Jun-13 10:13
demo 210-Jun-13 10:13 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan10-Jun-13 20:38
mveRichard MacCutchan10-Jun-13 20:38 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
demo 210-Jun-13 21:57
demo 210-Jun-13 21:57 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan10-Jun-13 23:05
mveRichard MacCutchan10-Jun-13 23:05 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
demo 211-Jun-13 12:33
demo 211-Jun-13 12:33 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Richard MacCutchan11-Jun-13 21:08
mveRichard MacCutchan11-Jun-13 21:08 
GeneralRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Amarnath S11-Jun-13 17:38
professionalAmarnath S11-Jun-13 17:38 
AnswerRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Usman Khalid Butt29-Jun-13 3:24
Usman Khalid Butt29-Jun-13 3:24 
AnswerRe: algorithm that finds the m smallest numbers in a list of numbers Pin
saephoed8-Jan-14 13:02
saephoed8-Jan-14 13:02 
AnswerRe: algorithm that finds the m smallest numbers in a list of numbers Pin
Andy Allinger21-Jan-14 15:24
professionalAndy Allinger21-Jan-14 15:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.