data structures
Tag details
Welcome to the 'data structures' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'data structures'.
Latest blogosphere posts tagged “data structures”
-
Expression Converstion’s Tutorial
Programming Interview Questions And Answers —
Authority: 139
When higher level programming languages came into existence one of the major hurdles faced by the computer scientists was to generate machine language instructions which would properly evaluate any arithmetic expression. To convert a complex assignment statement such as: X = A/B + C * D – F * G/Q Read ...6 days ago -
Inserting Element into a binary tree
Programming Interview Questions And Answers —
Authority: 139
Give a Binary tree and a number, inserts a new nodewith the given number in the correct place in the tree. Read More…..Related posts:Check if a binary tree is a binary search tree int isBST(struct node* node) { if (node==NULL) return(true);// false if...Binary Tree Search Btsearch (Bt, k) The above Function searches ...6 days ago -
Data structures Interview Questions
Programming Interview Questions And Answers —
Authority: 139
27. Draw the B-tree of order 3 created by inserting the following data arriving in sequence – 92 24 6 7 11 8 22 4 5 16 19 20 78 28. Of the following tree structure, which is, efficient considering space and time complexities? (a) Incomplete Binary Tree (b) Complete Binary Tree (c) Full Binary Tree (b) Complete ...1 week ago -
Linked List Interview Questions And Answers
Programming Interview Questions And Answers —
Authority: 139
What are the advantages of linked lists? Linked Lists Complete Tutorial Linked List How do you reverse a singly linked list? How do yo.. Inserting element into linked list Reversing a linked list Append Element at the end of the Linked List… Insert element at head position into Linked ...1 week ago -
Program’s for handling trees, graphs & Networks
Programming Interview Questions And Answers —
Authority: 139
Program to sort list of elements using quick sort…. Program to sort list of elements using heap sort. Program to show operations in binary tree. Program to show breadth first search in graph. Program to show depth first search in graph. Program to compute shortest path using dijkstras … ...1 week ago -
Source code for data structures and algorithm
Programming Interview Questions And Answers —
Authority: 139
Source code for converting an Interger into String… Source code for reversing a string.( charecter by … Source code for converting a string to an integer … Reversing words from a string( containin more than… Source code for reversing a singly linked list. Source code for Finding a Cycle in a ...1 week ago -
Data Structures Interview Questions And Answers Part I
Programming Interview Questions And Answers —
Authority: 139
Traverese tree in PostOrder Check if a binary tree is a binary search tree Technique for Swapping Two Integers Without Using … write an O(log2(N)) algorithm to find X^N Classis Factorial problem & Solution.. Append Element at the end of the Linked List… Insert element at head position ...2 weeks ago -
A* pathfinding search in C# - Part 3
Leniel Macaferi's blog —
Authority: 388
A* pathfinding search in C# - Part 1 A* pathfinding search in C# - Part 2 This is the last installment in the series about A* search. The C# source code implemented is available in the final part of this post. As promised in the last words of A* pathfinding search in C# - Part 2 today we’re gonna ...3 weeks ago -
Why You Should Replace ENUM With Something Else
BrandonSavage.net —
Authority: 414
One of the most hotly contested points of my article on database design was the suggestion that developers drop the use of ENUM and use something else instead. Lots of people argued in favor of ENUM; however, there are several good reasons why developers should reconsider ENUM and use it sparingly. There are three ...4 weeks ago

