BaraAlqady123
Results
1
issues of
BaraAlqady123
class linked_list{ struct node{//عملنا العقدة حقنا int data; node* next;}; node* head=NULL; public: // دالة اضافة عنصر الى اخر القائمة void apend_to_last(int val){ node* newnode=new node; newnode->data=val; newnode->next=NULL; if(head==NULL) head=newnode;...