Would you rather wait for the results of a quicksort, a
linear search, or a bubble sort on a 200000 element array?
1) Quicksort
2) Linear Search
3) Bubble Sort
Answers were Sorted based on User's Feedback
Answer / bukke ramesh naik
quicksort is best one compare two others because quick sort
takes node lists
| Is This Answer Correct ? | 2 Yes | 3 No |
what is the difference between declaration and definition of a variable or function ?
What is an auto variable in c?
Where are some collections of useful code fragments and examples?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
Is c compiled or interpreted?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How to develop software using "c" programming?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
how to find the binary of a number?
Which driver is a pure java driver
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type