INFiX to POSTFiX Conversion Tool v0.1 This is a handy tool written in assembly. This tiny program inputs an infix expression and outputs its postfix version. I have already mentioned this program in my previous posts but now I put both its binary and source code for free under the GNU GP License. This is [...]
Awesome Billy... - 0
Programming is a great experience everyone can experience! Everyday the languages are getting more abstracted and easier to learn and use, while many ones (like me) would like to program in lowest possible level yet. Writing a code which directly speaks with hardware without any inter-face is very exciting and enjoyable. A couple of ideas [...]
While you might have the Data Structure course like me this term, and your course reference is the Data Structures and Algorithms with Object-Oriented Design Patterns in Java book also, and(!) you may also have a slow connection or cannot always stay connected to get your papers online or any problems such like these.. I [...]
Through my practices for preparing for the acm challenges, recently I asked Nico, an Argentinian finalist, to help me for beginning. He introduced me some books which could be useful for the competitions. One of the books was the famous “Programming Challenges”. Before that I heard of it but couldn’t find it on the Net. [...]
It is not possible to overload the = assignment operator. However, when you overload a binary operator, its compound assignment equivalent is implicitly overloaded. For example, if you overload the + operator, the += operator is implicitly overloaded in that the user-defined operator+ method will be called. The [] operators can’t be overloaded. However, user-defined [...]
The Way Java... - 0
Java is one of the popular language and today it can be used in many fields; web development, cross-platform applications, mobile and PDA applications, etc. It could be very easy to learn for whom have some C or C++ experience or such like these languages cause of the Java’s syntax is really originated from c++. [...]
