-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: October 2012
Swapping Variables
Many algorithms, including the world-famous Euclidean, require to swap the values of two variables. So you probably know the following principle. int x = 8; int y = 123; int tmp = x; x = y; y = tmp; However, … Continue reading
Posted in Bit-Twiddling, Information Theory, Uncategorized
Tagged bit-twiddling, c, logic, variable, xor
Comments Off on Swapping Variables
A Beginner’s Guide to Object Oriented Programming (1)
What’s so fancy about Object Oriented Programming? Computers have been invented to help real-world people solving real-world problems, even though it seems today that computers actually contribute problems to the real world. Since a plain computer doesn’t know anything about … Continue reading
Posted in Programming Essentials, Uncategorized
Tagged java, Object Oriented Programming, OOP
Comments Off on A Beginner’s Guide to Object Oriented Programming (1)