What's the full form of STL?
Answers were Sorted based on User's Feedback
Answer / prangya mohapatra
STL:-(Standard Template Library) are a set of C++ template
classes to provide common programming data structures and
functions such as doubly linked lists (list), paired arrays
(map), expandable arrays (vector), large string storage and
manipulation (rope), etc.
Is This Answer Correct ? | 34 Yes | 3 No |
What is for loop and its syntax?
#include <stdio.h> #include <alloc.h> #include <stdlib.h> #include <conio.h> void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.
what is the main difference between sizeof() operator in c and c++
What do you mean by Encapsulation?
What does <> mean pseudocode?
what is the advantage in software? what is the difference between the software developer and Engineer
Can enum be null?
What is encapsulation in oop?
What are properties in oop?
You have one base class virtual function how will call that function from derived class?
WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT from an NIIT CENTRE??
21 Answers Biocon, MIT, NIIT,
Name an advantage of linked list over array?