Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
selection
- Page 1
Re: how much does Stable Token Development cost?
Programming
Software Development
2 Months Ago
by wootingdouble
The cost of Stable Token Development varies based on factors like blockchain
selection
, security features, compliance requirements, and customization. Consulting with a development team can give a more precise estimate.
Re: I am looking for a platform
Hardware and Software
Information Security
2 Months Ago
by Dani
Something tells me that you are going to post a recommendation that meets that exact criteria. Please don't. We don't tolerate promotional content here.
Re: I am looking for a platform
Hardware and Software
Information Security
1 Month Ago
by Ja sa bong
It is quite unfortunate that some people never like to adhere to the TOS of a community where they are making use of because it is strictly asked for no promotional post to be made but here someone is trying to do so indirectly.
Re: How do I get better in design?
Digital Media
UI / UX Design
4 Weeks Ago
by olivero2
More and more enterprises are switching to outsourcing to strengthen their positions in a dynamic market and increase cost-efficiency. It is confirmed by Techbehemoths, who surveyed 324 small and medium-sized IT companies. About 77% of respondents admit that they value outsourcing for cost-effectiveness and flexibility.і
Re: Selection sort
Programming
Software Development
14 Years Ago
by Adak
… element, every time through the loop - you misunderstood the algorithm.
Selection
sort is always a step better than bubble sort, in… one of them, frankly. This is a simplified version of
Selection
sort, and note how the j variable starts with i… it Easy or EZ sort, but it's based on
Selection
sort. Compare it with your version.
Re: selection sort
Programming
Software Development
12 Years Ago
by mike_2000_17
//
Selection
sort. // 'a' : A pointer to the first entry of the …
Selection sort from read file
Programming
Software Development
16 Years Ago
by nurulshidanoni
…;total[i] <<endl; } return 0; } [/CODE] [B][U]
selection
sort[/U][/B] [CODE=C++] void selectionSort(int *array,int…,1,8}; // array to sort selectionSort(a,10); //call to
selection
sort printElements(a,10); // print elements } [/CODE] but my problem…
Re: Selection sort
Programming
Software Development
14 Years Ago
by Adak
…swaps are incredibly time-consuming due to network constraints.
Selection
sort is the algo you want to use, …comparatively. Aside from this huge efficiency with minimal swapping,
Selection
sort has nothing to recommend it, imo. To judge…at the differences in the number of low swaps by
Selection
sort, compared to all the others. Quite stunning,…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by Laiq Ahmed
I have interesting solution other than
Selection
Sort, just for knowledge. You fetched the numbers from the … two algorithm, will give you the in depth knowledge regarding
selection
sort. [little mathematics required]. check whether you are doing the…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by nurulshidanoni
… 20 2 35 3 15 but not produce for the
selection
sort output? [code=C++] #include <iostream> #include <…;< endl; } } return 0; } void selectionSort(int *y,int n)//
selection
sort function { int i, min,minat,x ; { for(i=0…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by nurulshidanoni
…[i] <<endl; } return 0; void selectionSort(int *total)//
selection
sort function { int i,j,min,minat; for(i=0…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by VernonDozier
…[i] <<endl; } return 0; void selectionSort(int *total)//
selection
sort function { int i,j,min,minat; for(i=0…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by nurulshidanoni
…; y << endl; } } return 0; } void selectionSort(int *y)//
selection
sort function { int i, min, minat; for( i = 0 ; i…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by VernonDozier
…; y << endl; } } return 0; } void selectionSort(int *y)//
selection
sort function { int i, min, minat; for( i = 0 ; i…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by Lerner
… to call the input file that i was read into
selection
sort? Pass both Id and total to selectionSort() function, instead…
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by nurulshidanoni
…,30,25}; // array to sort selectionSort(a,10); //call to
selection
sort printElements(a,10); // print elements } [/code]
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by Lerner
You haven't called selectionSort from within main(), the x and y in main() are single variables, not a group of variables, and hence cannot be sorted, the x in
selection
sort has nothing to do with the x in main() and the y in selectionSort probably has nothing to do with the y in main().
Re: Selection sort from read file
Programming
Software Development
16 Years Ago
by nurulshidanoni
…> using namespace std; void SelectionSort(int *y,int n)//
selection
sort function { int i, min,minat ; { for(i=0;i…
Selection Search
Programming
Software Development
16 Years Ago
by botter911
Hi, I have a problem here in the
selection
search because it reads the text but does not detect … <conio.h> #include <string.h> void
selection
(char a[], int l, int r) { int i, j, t…;some", "any" }; char findme[5]; int found;
selection
(*list,0,5); printf("Enter a character to find…
Selection sort on array list
Programming
Software Development
13 Years Ago
by xThrash
Hello, For some work I have to implement the
selection
sort algorithm on an array list, I dont …the code but I just need to actually implement the
selection
sort! This is proving to be the stumbling block.…gt;(); Random r = new Random(); System.out.print("
Selection
sort-algorithm"); System.out.print("\n\nInput: "…
Re: Selection sort on array list
Programming
Software Development
13 Years Ago
by xThrash
…;1593076]First you need to find the algorithm for the
selection
sort and distill it down to steps that can be… anything but thats the point. Im not too sharp on
selection
sort or on my java so this seems to be…, none of my textbooks can help either. My understanding of
selection
sort is that it finds the minimum value, it then…
Selection Tool Problem
Programming
Web Development
13 Years Ago
by theone48
I'm trying to write a
selection
tool but I'm kinda stuck. My idea is to … list, it prompts the user to add information on the
selection
Say, <li> sunday monday tuesday ... </li>…: <text field> Appointments: <text field> Multiple
selection
is allowed but each list item can only be used…
Selection Sort Array
Programming
Software Development
12 Years Ago
by JavaPadawan
In this program I'm attempting to visually represent a
selection
sort using an array of rectangle objects. If the … spots and the array being repainted each time through the
selection
sort loop. As it is now, the program swaps…array over and over. I've miscalculated something in my
selection
sort -- I'd appreciate anyone pointing me in the right…
Re: Selection Search
Programming
Software Development
16 Years Ago
by botter911
…; #include <conio.h> #include <string> void
selection
(char a[], int l, int r) { int i, j, t…;some", "any"}; char findme[5]; int found;
selection
(*list,0,5); printf("Enter a character to find…
Re: Selection Search
Programming
Software Development
16 Years Ago
by Ancient Dragon
[URL="http://linux.wku.edu/~lamonml/algor/sort/
selection
.html"]Here [/URL]is the
selection
sort algorithm. Compare it with yours. You are missing the swapping part at the end of the code snippet.
Re: Selection Sort Array
Programming
Software Development
12 Years Ago
by wen_cai
Can you explain your version of a
selection
sort? From what I can remember is that
selection
sort goes through the list to find the smallest value and swap the value with the current pointer value. If you are having the same understanding as me. I think you need is another for loop to find the smallest value to swap.
Re: Selection Sort in java
Programming
Software Development
19 Years Ago
by psodhi
hi.. I am writing the code for
selection
sort, you'll need to pass the numbers for sorting … you use to run the java program e.g., java
Selection
12,45,1,76,50 the code is as follows…: class
Selection
{ public static void main(String arg[]) { int x[]; //declaring an…
Selection Sort and String
Programming
Software Development
19 Years Ago
by Saint48198
… trouble with a program. The program needs to do a
selection
sort of last names. I have the program sorting the… sortData(string lName[], int noOfRows) { int i, j; int min; //
selection
sort for (i = 0; i < noOfRows - 1; i++) { // step…
selection sorting issues
Programming
Software Development
18 Years Ago
by rQQt
… C. Unfortunately the algorithm doesn't work correctly. After the
selection
sort some float numbers in the array are rounded down…
Re: Selection sort:::
Programming
Software Development
16 Years Ago
by Laiq Ahmed
… given you the good resource for
selection
sort. let me discuss what I know about
selection
sort.
selection
sort is simple it just…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC