Given an array of characters which form a sentence of
words, give an efficient algorithm to reverse the order of
the words (not characters) in it.

Answer Posted / manish

int i, j, k;
int t = 0;

char[] c = "manish singhal is here".ToCharArray();

j = c.Length;
char[] b=new char[c.Length];

for (i = c.Length - 1; i >= 0; i--)
if ((i > 0 && c[i - 1] == ' ') || i == 0)
{
for (k = i; k < j; k++)
b[t++] = c[k];
if (i > 0)
b[t++] = c[--i];
j = i;
}
Console.WriteLine(b);
Console.ReadLine();

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a function to give demostrate the functionality of 3d in 1d. function prototye: change(int value,int indexX,int indexY,int indexZ, int [] 1dArray); value=what is the date; indexX=x-asix indexY=y-axis indexZ=z-axis and 1dArray=in which and where the value is stored??

4149


Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange

2867


Design an implement of the inputs functions for event mode

2970


How to palindrom string in c language?

8888


Cluster head selection in Wireless Sensor Network using C programming language.

3116






Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??

1783


why nlogn is the lower limit of any sort algorithm?

2381


write a program for area of circumference of shapes

2038


how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns

3129


How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?

2032


create a C-code that will display the total fare of a passenger of a taxi if the driver press enter,the timer will stop. Every 10 counts is 2 pesos. Initial value is 25.00

6319


why do you use macros? Explain a situation where you had to incorporate macros in your proc report? use a simple instream data example with code ?

2265


Develop a routine to reflect an object about an arbitrarily selected plane

3003


Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?

3859


What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?

3718