coding




Comment hidden because of low score. Click to expand.
0
of 0 vote

In fact,the problem is a matter of comparison rules.

- guo song August 17, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Huh?

- Anonymous August 17, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

the code of comparision between two numbers
int compare(char* strnumber1,char *strnumber2)
{
char *str1,*str2;
strcpy(str1,strnumber1);
strcat(str1,strnumber2);

strcpy(str2,strnumber2);
strcat(str2,strnumber1);

return strcmp(str1,str2);

}
The bigger one shall be put in the smaller one.

- guo song August 17, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Are you doing a series of comparisons to sort them in order? If so, this would be O(nlgn).

- Booley August 22, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

Use a radix sort
-sort numbers by digits (ones place, then tens, thousands, etc)
-Concatenate all numbers starting at end of list

Ex: {12, 65, 56, 46}
Sort by ones: {12, 65, 56, 46}
Sort by tens: {12, 46, 56, 65}

Concatenate: 65-56-46-12

- Booley August 22, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Radix sort takes O(n) time.

- Booley August 22, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

AOL support +1-800-893-9752
When AOL user is unable to get the email or unable to log-in to the AOL account, then it is best to get the quick help by dialup toll-free # +1-800-893-9752
contact aol member services, aol support phone number usa, aol email support phone number, aol email tech support number, aol email customer service number, aol email customer support, aol customer support telephone number, aol technical support contact number, aol com customer service phone number, download aol mail to computer, Aol email support phone number, aol gold desktop download, aol mail tech support number, aol mail hotline number, aol mail toll free number, contact aol mail support number, aol customer service number, aol support phone number, aol support number, aol mail repair

- ap2ankur May 24, 2018 | Flag Reply




Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More