473,804 Members | 3,030 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I get error C3861: 'addNode': identifier not found

5 New Member
Expand|Select|Wrap|Line Numbers
  1. struct Node
  2. {
  3.     int value;
  4.     int phoneNo;
  5.     string name;
  6.     string surname;
  7.     string adress;
  8.     string Email;
  9.  
  10.     Node* pLeft;
  11.     Node* pRight;
  12. };
  13. //Create a new node
  14. Node* add(Node* tree, int value,int  phone ,string nam,string sNam,string adr,string eM)
  15. {
  16.     Node* tempPtr = new Node;
  17.  
  18.     tempPtr->value = value;
  19.     tempPtr->phoneNo=phone;
  20.     tempPtr->name=nam;
  21.     tempPtr->surname=sNam;
  22.     tempPtr->adress=adr;
  23.     tempPtr->Email=eM;
  24.  
  25.     tempPtr->pLeft  = 0;
  26.     tempPtr->pRight = 0;
  27.  
  28.     return addNode(tree, tempPtr);
  29. }
  30.  
  31. //Writing in a tree
  32. Node* addNode(Node* tree, Node* toAdd)
  33. {
  34.     /**/if (toAdd->value == 0)
  35.     {
  36.         return tree;
  37.     }
  38.     else if (tree->value == 0)
  39.     {
  40.         return toAdd;
  41.     }
  42.     else
  43.     {
  44.         if(toAdd->value < tree->value)
  45.         {
  46.             tree->pLeft = addNode(tree->pLeft, toAdd);
  47.             return tree;
  48.         }
  49.         else
  50.         {
  51.             tree->pRight = addNode(tree->pRight, toAdd);
  52.             return tree;
  53.         }
  54.  
  55.     }
  56. }
  57. void main()
  58. {
  59.                int no=0,x;
  60.     int y;
  61.     Node* tree=new Node();
  62.  
  63.     x=4;
  64.     y=432434435;
  65.  
  66.      tree=add(tree,x,y,"alis","dan","tel aviv","asdas@adsd.daw");
  67. }
  68.  
Aug 13 '08 #1
2 2102
FARAECHILIBRU
5 New Member
hi!! 10x i got it!!!:)
Aug 13 '08 #2
FARAECHILIBRU
5 New Member
next time maybe ............... ............... ............... ........
Aug 13 '08 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

1
5817
by: bmassey | last post by:
Hi, Was wondering if anyone could help me with this odd error: Am working in VS.Net Framework 1.1 C++. I had a function defined as void colorizeImage(). I decided I didn't need that function anymore and so renamed it to be void filterTheImage(). The compiler comes back and gives me this message: c:\...\klt.cpp(718): error C2365: 'filterTheImage' : redefinition; previous definition was a 'formerly unknown identifier'. If I name it...
1
1545
by: KK | last post by:
Dear All I'm having an application developed in VC++6.0.Now i'm trying to complie the same with Visual Studio.Net 2003,but getting some strange errors.Can anybody help to get out of these errors?I didn't not modify any project options for this project Errors are listed below c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\atlalloc.h(336): error C3861: '_alloca': identifier
2
1841
by: VicVic | last post by:
Hello, I have an old project, built with VC++. Now need to be compiled in Visual Studio .Net 2003. The project is going to build a DLL. When i try to compile the project, i got the following errors: c:\thepath\aaa.cpp(890): error C2065: 'm_nBackStyle' : undeclared identifier c:\thepath\aaa.cpp(890): error C3861: 'm_nBackStyle': identifier not found, even with argument-dependent lookup
7
2486
by: GRoll35 | last post by:
I have 3 files here - Header/Implementation/Driver All it has to do is send the user's input (age)..to the class and the class will figure out the price of the ticket. I'm suppose to create the object and then have it display the cost of the ticket. I'm new to using classes like this so I'm a little confused. Here is the errors I get. If anyone could point out where to start or something that I should keep in mind that would be very...
6
5655
by: Bobrick | last post by:
Hi. Thanks to everyone who replied to my last post, it turns out it wasn't the line where I was trying to treat the variable in question as an array which was the problem, but the line above. char temp; std::vector<unsigned charmmessage; while (!done){
9
2961
by: i | last post by:
#include<stdio.h> #include<conio.h> #include<process.h> #include<string.h> char ch; int n,m; void main(); char check(int,int,char); void cash(int,int,char); void debit_card(int,int,char);
2
9175
by: Hooyoo | last post by:
I have included windows.h, but it still says 'InitializeCriticalSectionAndSpinCount': identifier not found. Why? any ideas? Thanks.
3
21434
by: jumpman17 | last post by:
OK, I'm getting just this one error. error C3861: 'upload_data': identifier not found I have that function in the header file, why is it not seeing it? I can post code if needed.
5
2083
by: zhang | last post by:
error C3861: 'Navigate2': identifier not found why???
0
9706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9579
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10571
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10326
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10317
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
5651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4295
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3815
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2990
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.