Quantcast
Channel: HashFold » CPP
Browsing latest articles
Browse All 5 View Live

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 Article



Writing 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 Article

Writing 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 Article

Writing 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 Article

Getting 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

Browsing latest articles
Browse All 5 View Live




Latest Images