CPP Header Files
The standard practice is to have one header file (.h) per class file (.cpp). The correct use of the header files could enhance the readability and also boost the performance of the code. When deciding...
View ArticleWriting Tree data structure in C++
I was browsing through the Facebook and encountered ProudEngineers page. The implementation provided there is awesome. After going through it, I couldn't resist to mention on this blog so that our...
View ArticleWriting Stack Data Structure in C++
on the same line of our previous post, here is how to write Stack in c++: //stack program #include <iostream.h> struct node { int data; node *link; }; class stack { private: node *top; public:...
View ArticleWriting Queue Data Structure In C++
on the same line of our previous post, here is how to write Queue in c++: <pre> #include <iostream.h> struct node { int data; node *link; }; class queue { private: node *front, *rear;...
View ArticleGetting a job in software development
There are lots of question-answer websites where people discuss their problems and try to find the possible solutions using the crowd (well known as crowdsourcing). Some of these sites are quora.com,...
View Article