473,387 Members | 1,575 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

SOME DIFFERENT KIND OF SELECTION SORTING OF ARRAY.

PLEASE PROVIDE ME D SOLUTION CODE FOR DIS PROBLEM.

SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.

WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.

Jul 4 '06 #1
13 2665
ANSHUL wrote:
PLEASE PROVIDE ME D SOLUTION CODE FOR DIS PROBLEM.

SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.

WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.

1. don't shout, it hurts my ears.
2. rephrased, you want us to perform your homework.
Jul 4 '06 #2
ANSHUL wrote:
PLEASE PROVIDE ME D SOLUTION
[snipped rest of the brawling]

By convention all uppercase text signifies shouting, so in future,
refrain from it if you want helpful responses.

Also provide the email of your course instructor, so that we may save
you the hassle and mail the answer to him/her directly.

Seriously though, this group won't do your homework for you. Try
atleast a partial attempt at solving your problem and post your code
here and we'll be more than happy to help you, but with this attitude,
you likely wont get any helpful responses.

Jul 4 '06 #3
"ANSHUL" writes:
SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.
Why would you want someone else to write the code for you? What would be
gained? The question seems about as clear as a question can be, ignoring
what I suspect is the distortion you introduced yourself. There are just a
few main steps: create an array, fill the array (with a set of test data),
sort the array, and print the array (to show the sort actually worked). If
you create an array in main you could have three functions as suggested
above. You may want to have the sort function call additional functions -
its your choice. It would be a good idea to (also) print the array as soon
as you have it filled with data to see if the fill worked.

If you have been taught recursion, it might be helpful in writing the sort -
if not do it whatever way seems natural to you.

If you can't do the whole thing, start and post code showing how far you
got.
Jul 4 '06 #4
On 4 Jul 2006 09:32:59 -0700, in comp.lang.c , "ANSHUL"
<An***@yahoo.co.inwrote:
>WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.
Fortran programmer?

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Jul 4 '06 #5
Mark McIntyre wrote:
On 4 Jul 2006 09:32:59 -0700, in comp.lang.c , "ANSHUL"
<An***@yahoo.co.inwrote:
>WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.

Fortran programmer?
LOL!!!!

--
Johannes
You can have it:
Quick, Accurate, Inexpensive.
Pick two.
Jul 4 '06 #6
On 4 Jul 2006 09:32:59 -0700, in comp.lang.c , "ANSHUL"
<An***@yahoo.co.inwrote:
>PLEASE PROVIDE ME D SOLUTION CODE FOR DIS PROBLEM.

SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.

WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.
Anshul.
Firstly please write in sentence-case if possible, when posting to
usenet. Most people find ALL UPPER CASE hard to read, and by
convention it is considered to be shouting (ie you are being rude).

Secondly please don't use abbreviations such as D for the, PLS for
please, DIS for this or V for we. The programming community here
values correctness, and poorly spelt messages often come from badly
organized minds.

Lastly, do not expect people to write your code for you. You should
make an effort to write it yourself, then when you are stuck with a
problem, ask for specific help.

--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Jul 4 '06 #7
Mark McIntyre wrote:
On 4 Jul 2006 09:32:59 -0700, in comp.lang.c , "ANSHUL"
<An***@yahoo.co.inwrote:

>>WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.


Fortran programmer?
Ah, that explains it, I thought he/she was a Teletype user...

--
Ian Collins.
Jul 4 '06 #8
ANSHUL schrieb:
PLEASE PROVIDE ME D SOLUTION CODE FOR DIS PROBLEM.

SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.

WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.
Here is it:

#include <stdio.h>
#include <ctype.h>

int main()
{
int c;
while ((c = getchar()) != EOF)
putchar(tolower(c));
}

--
Thomas
Jul 4 '06 #9
On 4 Jul 2006 09:32:59 -0700, "ANSHUL" <An***@yahoo.co.inwrote in
comp.lang.c:
PLEASE PROVIDE ME D SOLUTION CODE FOR DIS PROBLEM.

SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.

WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.
PLZ, PICK UP D LARGE HAMMER AND HIT URSELF IN D HEAD. V ARE WAITING.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://c-faq.com/
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Jul 5 '06 #10
Jack Klein <ja*******@spamcop.netwrote:
On 4 Jul 2006 09:32:59 -0700, "ANSHUL" <An***@yahoo.co.inwrote in
comp.lang.c:
PLEASE PROVIDE ME D SOLUTION CODE FOR DIS PROBLEM.

SELECTION SORT IS BASED ON D FOLLOWING IDEA:
SELECTING D LARGEST ARRAY ELEMENT AND SWAPPING IT WITH THE LAST ARRAY
ELEMENT LEAVES AN UNSORTED LIST WHOSE SIZE IS I LESS THAN THE SIZE OF
ORIGINAL LIST. IF V REPEAT THIS STEP AGAIN ON D UNSORTED LIST V WILL
HAVE AN ORDERED LIST OF SIZE 2 AND UNORDERED LIST SIZE OF N-2(N IS D
TOTAL NUMBER OF ARRAY ELEMENTS).WHEN WE REPEAT THIS UNTIL THE SIZE OF
THE UNSORTED LIST BECOMES ONE, THE RESULT WILL BE A SORTED LIST.

WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.

PLZ, PICK UP D LARGE HAMMER AND HIT URSELF IN D HEAD. V ARE WAITING.
I believe V prefer live prey.

Richard
Jul 5 '06 #11

Ian Collins wrote:
Mark McIntyre wrote:
On 4 Jul 2006 09:32:59 -0700, in comp.lang.c , "ANSHUL"
<An***@yahoo.co.inwrote:

>WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.

Fortran programmer?
Ah, that explains it, I thought he/she was a Teletype user...
I figured he was following the strupr thread and was excited
to get the code to work.

Jul 5 '06 #12
Bill Pursell wrote:
Ian Collins wrote:
>Mark McIntyre wrote:
>>On 4 Jul 2006 09:32:59 -0700, in comp.lang.c , "ANSHUL"
<An***@yahoo.co.inwrote:
WRITE A PROGRAM IN C LANGUAGE TO IMPLEMENT THIS ALGORITHM.
PLZ , GIVE A SIMPLE LOGICAL CODE.
Fortran programmer?
Ah, that explains it, I thought he/she was a Teletype user...

I figured he was following the strupr thread and was excited
to get the code to work.
He almost got it to work, but it still mangles some of the shorter
words... still a lot of work to do on it as it seems...

--
John
You can have it:
Quick, Accurate, Inexpensive.
Pick two.
Jul 5 '06 #13
On Wed, 05 Jul 2006 06:46:18 GMT, in comp.lang.c ,
rl*@hoekstra-uitgeverij.nl (Richard Bos) wrote:
>I believe V prefer live prey.
Ah, that takes me back.
Robert Englund in a role other than Freddy.
--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Jul 5 '06 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Boba | last post by:
Hi, 1. What is the different between String and Array of char ? 2. Should I use array of char if my string is longer than 200,000 chars and I need use IndexOf frequently ? 3. I'm sure that...
3
by: project | last post by:
Hi every body, Any body can help me the following doubts? 1. what is constructor? 2. what is destructor? 3. what is overriding function. 4. different between structure and array 5. what is...
6
by: frizzle | last post by:
Hi there. I have this array: name => john, age => 45, profession => teacher name => hank, age => 22, profession => student name => mary, age => 36, profession => dancer etc. etc. It's...
25
by: Allie | last post by:
How would I go about sorting this structure by title? typedef struct { char author; char title; char code; int hold; int loan; } LIBRARY;
8
by: lovecreatesbeauty | last post by:
Hello experts, I have seen following the code snippet given by Marc Boyer (with slight changes by me for a better format), and have doubts on it. I am so grateful if you can give me your kindly...
4
by: VooDoo | last post by:
Hi, I am getting confused with sorting arrays... $arraytest =array(5) { =string(2) "39" =string(2) "44" => string(2) "77" =string(3) "150" =string(3) "464" } why do i get NULL value if i try to...
5
by: Tartifola | last post by:
Hi, I'm working with numerical array and I'm a little lost on a particular sorting of one of them. In particular I have an array like a = array(,]) and I need to sort it using only the first...
7
by: anklos | last post by:
Hi~! I met a problem on printing out a kind of hash array. i.e @array=(1,2,3,4,5,6); $array{$term}=1; diffent $i may contain diifernt $term(more than one term for each $i)
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.