开发者

C++ XCODE need help Beginner Using

开发者 https://www.devze.com 2023-03-31 22:38 出处:网络
hey everyone ive written the following code except i get an error when i compile it in xcode any assistance will be utmost greatful

hey everyone ive written the following code

except i get an error when i compile it in xcode any assistance will be utmost greatful

#include <iostream.h>

class node
{
public:
int value;           //value stored in the node 
node *next;          //pointer to next node 
node *prev;          //pointer to previous node 
};

class dlist
{
public:
node *front;       //pointer to front of list   
node *back;        //pointer to back of list  

dlist()
{
front=NULL;
back=NULL;
}

void insertFront(int value);             
void insertBack(int value);
void removeFront();
void removeBack();
void insertBefore(int value,node *nodeB);
void insertAfter(int value,node *nodeA);
void removeBefore(node *nodeB);
void removeAfter(node *nodeA);
void removeNode(node *newNode);
void printDListFront();
void printDListBack();
};

//insert a node before nodeB
void dlist::insertBefore(int value,node *nodeB)    
{
node *newNode;
newNode=new node();
newNode->prev=nodeB->prev;
newNode->next =nodeB;
newNode->value =value; 
if(nodeB->prev==NULL)
{
this->front=newNode; 
}
nodeB->prev=newNode;

}

//insert a node before the front node 
void dlist::insertFront (int value)
{
node *newNode;
if(this->front==NULL)
{
newNode=new node();
this->front=newNode;
this->back =newNode;
newNode->prev=NULL;
newNode->next=NULL;
newNode->value=value;

}
else
{
insertBefore(value,this->front );
}
}

//insert a node after  nodeB
void dlist::insertAfter(int value,node *nodeB)
{
node *newNode;
newNode=new node();
newNode->next= nodeB->next ;
newNode->prev  =nodeB;
newNode->value =value;

if(nodeB->next==NULL)
{
cout<<"\n "<< endl;
this->back =newNode; 
}
nodeB->next=newNode;
cout<<"2"<<endl;
}
//insert a node after the last node 
void dlist::insertBack (int value)
{          
if(this->back==NULL)
{
cout<<"insert at back";
insertFront(value);
}
else
{
cout<<"insert at back";
insertAfter(value,this->back  );
}
}

//remove the front node 
void dlist::removeFront ()
{
removeNode(this->front);
}

//remove a back node 
void dlist::removeBack  ()
{
removeNode(this->back);

}

//remove before a node 
void dlist::removeBefore(node *nodeB)
{

if(nodeB->prev==this->front)
{
this->front=nodeB;
this->front->prev=NULL;
}
else
{
removeNode(nodeB->prev);
}
}

//remove after a node 
void dlist::removeAfter(node *nodeA)
{
if(nodeA->next==this->back)
{
this->back=nodeA;
this->back->next=NULL;
}
else
{
removeNode(nodeA->next);
}
}

//remove a perticular node 
void dlist::removeNode(node *nodeToRemove)
{
if(nodeToRemove==this->front)
{
this->front=this->front->next;
this->front->prev=NULL;
}
else if (nodeToRemove==this->back)
{
this->back=this->back->prev;
this->back->next=NULL ;
}
else
{
nodeToRemove->prev->next=nodeToRemove->next;
nodeToRemove->next->prev=nodeToRemove->prev;
}
}

//Print the list from front 
void dlist::printDListFront()
{
node* curr2;
curr2= this->front;
cout<<"\n-----\n";
cout<<"Queue\n";
cout<<"-----\n";
//cout<<"size:"<<getQueueSize()<<endl;
while(curr2!=NULL)
{
cout<<" |"<<curr2->value<<"|";
curr2=curr2->next;
}
cout<<endl;
}// print the Double Linked List from front


// print the Double Linked List from backwards
void dlist::printDListBack()
{
node* curr2;
curr2= this->back;
cout<<"\n-----\n";
cout<<"Queue\n";
cout<<"-----\n";
//cout<<"size:"<<getQueueSize()<<endl;
while(curr2!=NULL)
{
cout<<" |"<<curr2->value<<"|";
curr2=curr2->prev;
}
cout<<endl;
}// print the Double Linked List from back

void main()
{
dlist *st ;
st= new dlist();
st->insertBack(8); 
st->printDListFront ();
st->insertBack(5); 
st->printDListFront ();
st->insertBack(6); 
st->printDListFro开发者_运维知识库nt ();
st->insertFront(1) ;
st->printDListFront ();
st->insertFront(3) ;
st->printDListFront ();
st->insertBack(7); 
st->printDListFront ();
st->removeFront();
st->printDListFront ();
st->removeBack();
st->printDListFront ();
}

The Error i get is MAIN MUST RETURN "int"


From ISO/IEC 14882:2003(E) - 3.6.1

An implementation shall not predefine the main function. This function shall not be overloaded. It shall have a return type of type int, but otherwise its type is implementation-defined. All implementations shall allow both of the following definitions of main:

int main() { /* ... */ } and

int main(int argc, char* argv[]) { /* ... */ }

Also there is no need to include .h for a standard header file.

#include <iostream> // is sufficient


void main is not standard.

You must return an int.

int main() is better

see this article for more explanation : http://www.parashift.com/c++-faq-lite/newbie.html#faq-29.3

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号