How to print the reverse of the String "java is object orientated language" without using any predefined function like reverse()?
|
|
You can do it either recursively or iteratively (looping). Iteratively:
Recursively:
|
|||||||||||||||||||||
|
|
This is the simplest solution:
|
|||
|
|
|
Well, printing itself would suggest a predefined function... Presumably, though, you could obtain the characters and concatenate them manually in reverse (i.e. loop over it backwards). Of course, you could say concatenation is a predefined function... so maybe the char array itself. But again... why? Is the source allowed to contain "egaugnal detatneiro tcejbo si avaj" ;-p Also - note that string reversal is actually pretty complex if you consider unicode combining characters, surrogate pairs, etc. You should note the caveat that most string reversal mechanisms will only deal with the more common cases, but may struggle with i18n. |
|||
|
|
|
First of all: why reinvent the wheel? That being said: loop from the length of the string to 0 and concatenate into another string. |
|||
|
|
|
How about a simple traverse from the end of the string to the beg:
|
|||
|
|
} |
|||
|
|
|
||||
|
|
Prints the reversed string of the input. |
||||
|
|
|
Here's a recursive solution that just prints the string in reverse order. It should be educational if you're trying to learn recursion. I've also made it "wrong" by actually having 2
Bonus points if you answer these questions:
|
|||
|
|
You can do it either recursively or iteratively (looping). Iteratively:
Recursively:
|
||||
|
|
|
|||
|
|
|
||||
|
|
|
|||||||
|
|
My logic is always different for good or bad.
|
|||
|
|
O/P is: am I here world hello |
||||
|
|
|
I had this a while back, and having answered with the obvious StringBuffer.reverse() answer, they then asked 'Can you reverse a char array without using those API methods and achieve the result without spooling into a new char array?' At the time I recognised that I only needed to iterate over half the length of the char array, but made a bit of a hash of explaining the actual code that needed to go into it (it was a verbal question). Anyway, I tried it when I got home and came up with this:
You can obviously achieve this with less code, but I think the temporary assignments in the method make it more clear what the code is doing. Outputs something like:
More of an interview question than a homework question, I'd say. |
||||
|
|
|
||||
|
|
|
||||
|
|
