online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include <type_traits> #include <vector> #include <string> #include <functional> #include <map> #include <algorithm> #include <sstream> #include <set> #include <unordered_map> using namespace std; template<class Type> struct nodeType{ Type value; nodeType<Type> *next; nodeType<Type> *prev; }; template <class Type> class sortedListADT { public: const sortedListADT<Type>& operator=(const sortedListADT<Type> &); bool isEmpty() const; bool search(const Type& searchElem) const; void removeElement(const Type& remElem); void insertElement(const Type& newElem); Type front() const; Type back() const; void printInOrder() const; void printRevOrder() const; void destroyList(); sortedListADT(); sortedListADT(const sortedListADT<Type>& otherList); ~sortedListADT(); private: nodeType<Type> *first; nodeType<Type> *last; int numElements; void copyList(const sortedListADT<Type>& otherList); }; template<typename Type> //-----------------------------------------------------------------------------------vvvvvvvvvvvvv--->added a name for the paramter const sortedListADT<Type>& sortedListADT<Type>::operator=(const sortedListADT<Type> &namedParameer) { return {}; } int main() { }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue