How can you find the nodes with repetetive data in a linked
list?
Answer / murali
By parsing/processing the nodes
we attain O(n) to O(log(n)) depending on the type of data-
structure
| Is This Answer Correct ? | 2 Yes | 9 No |
How do I open binary files?
Can I learn c++ without learning c?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
What character terminates all character array strings a) b) . c) END
Explain one-definition rule (odr).
Tell me what are static member functions?
Describe the advantage of an external iterator.
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
How can a struct in c++ differs from a struct in c?
What would happen on forgetting [], while deallocating an array through new?
Can constructor be private in c++?