PUT IN ALPHABETICAL ORDER?

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

Was this solution helpful to you?

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!!

Just Added Q & A:

Find solution

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.