How do you put 100 people in alphabetical order?
-
Assume that we have 100 people and we need to arrange them in alphabetical order. Everyone know few people. How do we arrange all the people in alphabetical order by last-name/first-name, so that they have minimal communication and minimum walking.
-
Answer:
Put a 3-sided sign with the name on each one's head. Let them work it out.
space at Yahoo! Answers Visit the source
Other answers
This question is extremely ambiguous, however u can compare 2 string for lexicographical order in Java using string1.compareTo(string2). If u have an array of strings u can sort it in this way: public class SortArrayString { public static void sortEm(String [] array, int len) { int a,b; String temp; int sortTheStrings = len - 1; for (a = 0; a < sortTheStrings; ++a) for (b = 0; b < sortTheStrings; ++b) if(array[b].compareTo(array[b + 1]) >0) { temp = array[b]; array[b] = array[b + 1]; array[b + 1] = temp; } } }
Enter all names according to plan in mobile phone. These will be arranged alphabetically.
By Using Excel or Spreadsheet. In Excel (2000/2003/2007) Paste all the names. Highlight all the cells and then right-click and press sort then Sort A-Z. Done!! Thank You EDIT: By the way Ziko WHAT ARE YOU ON ABOUT { is = to } Head is = to brain Dumb Dumb!!
Related Q & A:
- How can I sort my data in alphabetic order?Best solution by Stack Overflow
- How do i put my forum in yahoo search for people to see and connect too?Best solution by Yahoo! Answers
- How do you put songs from iTunes and put them on the PSP?Best solution by Yahoo! Answers
- What are all the Argentinian Football teams in alphabetical order?Best solution by Yahoo! Answers
- How do I put my contacts in an order I want them in?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.