Submitted by heartin on Thu, 06/11/2015 - 21:00
-
Write an algorithm to reverse a string.
-
Assumptions
-
You cannot use any library functions.
-
You may use charAt (if needed.)
-
Write an algorithm to find out if a string has all unique characters.
-
Assumptions
-
You cannot use additional data structures.
-
References
Submitted by heartin on Sun, 06/07/2015 - 21:42
A block is a group of zero or more statements between balanced braces ('{' and '}') and can be used anywhere a single statement is allowed inside a class, and this includes inside the class outside all methods and within methods. A method can also be considered as a block with a name.
Submitted by heartin on Sun, 06/07/2015 - 06:29
A programmer create software through a process called programming or coding. The purpose of programming is to develop an executable computer program that will automate performing a specific task or solving a given problem.
Programming involves activities such as analysis, design, generating algorithms and implementation of algorithms in a target programming language. These activities are also called as Software Development Lyfecycle (SDLC).
Submitted by heartin on Thu, 06/04/2015 - 08:27
-
A compiler is a computer program that transforms source code written in a programming language into another computer language, often in a binary form, that is understood by the computer platform.
-
A compiler usually transforms a high-level programming language to machine code specific to a platform, so that it can then be directly executed in that platform.
Submitted by heartin on Thu, 06/04/2015 - 06:26
-
The purpose of programming is to develop an executable computer program that will automate performing a specific task or solving a given problem.
-
Programming involves activities such as analysis, design, generating algorithms and implementation of algorithms in a target programming language.
-
The process of programming often requires expertise in many different areas, like the application domain knowledge, specialized algorithms etc.
Pages