Click here to Skip to main content
15,892,746 members
Home / Discussions / Algorithms
   

Algorithms

 
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 
Your algorithm, as Richard said earlier, should include a sorting step.

1. Read in the n integers.
2. Sort those n integers using a sorting algorithm to arrange them in ascending order (if you can use quicksort, nothing like that; but I presume your n will be a reasonably small number - so you can use any sorting algorithm).
3. Report out the first m numbers from this sorted list. These will be the m smallest numbers.

This should be enough.

In the code written above, there is no sorting step. Or, your professor might have told you (over voice) that the array A[n] is already sorted. Get that clarification from your professor.
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 
QuestionClosest Ancestor Pin
NGInd7-Jun-13 4:14
NGInd7-Jun-13 4:14 
AnswerRe: Closest Ancestor Pin
Roy Heil14-Jun-13 9:58
professionalRoy Heil14-Jun-13 9:58 
QuestionUseage about OPCODE collision detection Pin
Henry Hong4-Jun-13 15:23
Henry Hong4-Jun-13 15:23 
AnswerRe: Useage about OPCODE collision detection Pin
dusty_dex4-Jun-13 18:36
dusty_dex4-Jun-13 18:36 
GeneralRe: Useage about OPCODE collision detection Pin
Henry Hong4-Jun-13 20:03
Henry Hong4-Jun-13 20:03 
GeneralRe: Useage about OPCODE collision detection Pin
Richard MacCutchan4-Jun-13 21:52
mveRichard MacCutchan4-Jun-13 21:52 
GeneralRe: Useage about OPCODE collision detection Pin
SoMad4-Jun-13 22:52
professionalSoMad4-Jun-13 22:52 
GeneralRe: Useage about OPCODE collision detection Pin
Richard MacCutchan4-Jun-13 23:32
mveRichard MacCutchan4-Jun-13 23:32 
GeneralRe: Useage about OPCODE collision detection Pin
dusty_dex4-Jun-13 23:46
dusty_dex4-Jun-13 23:46 
GeneralRe: Useage about OPCODE collision detection Pin
Richard MacCutchan4-Jun-13 23:53
mveRichard MacCutchan4-Jun-13 23:53 
QuestionWeather Prediction using minimal data Pin
nootanghimire16-May-13 23:06
professionalnootanghimire16-May-13 23:06 
AnswerRe: Weather Prediction using minimal data Pin
dusty_dex16-May-13 23:58
dusty_dex16-May-13 23:58 
GeneralRe: Weather Prediction using minimal data Pin
nootanghimire17-May-13 23:50
professionalnootanghimire17-May-13 23:50 
GeneralRe: Weather Prediction using minimal data Pin
dusty_dex18-May-13 2:49
dusty_dex18-May-13 2:49 

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.