Assume I have a linked list contains all of the alphabets
from "A" to "Z?" I want to find the letter "Q" in the list,
how does you perform the search to find the "Q?"
Answers were Sorted based on User's Feedback
Answer / bharghavi
for(currnode=head;currnode!=null;currnode=currnode->next)
{
if(currnode->data=='Q')
cout<<"element found";
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / tutum
by using find() function..u can find "Q"...
regards
tutum
| Is This Answer Correct ? | 2 Yes | 1 No |
Name the different types of stl containers.
What is stl in oop?
tell about sorted linked list
why & sign is used in copy constructor
c# support late binding or early binding.
Explain how to insert a hyperlink in to an Excel worksheet and save a Word document as a Web page.
What do stl stand for?
What is Constructor
What is stl stack?
differentiate between private, public and protected data members of the class using example.
WHAT IS THE DIFFERENCE BETWEEN C++ AND VC++
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.