Meher RushiforMeherRushimeher.hashnode.net·Mar 17, 2023Implementing a Basic Binary Tree Program in PharoIntroduction I encountered Pharo in the process of trying to find an interesting project to contribute to in the open-source community space. I will write a separate blog on How I came across the Pharo Community and Why I started learning such a nich...Discuss·11 likes·82 readsPharo
Dave KforDave K's Blogdavek17.hashnode.net·Oct 27, 2014C# Visual Object Explorer DialogOften, when building visual applications I find that as I build the applications in stages, there are often times when I’d like to be able to quickly view what data is in the application memory without having to build the UI and link the data to a se...Discuss·47 readsTalking I.T. Throughsoftware
Dhawal PandyaforDhawal Codesdhawalpandya01.hashnode.net·Dec 5, 2022The last Recursion Blog you’ll ever needThe ‘if’ statement that we need here is, either you know about recursion, or you don’t. If you know, then you can probably stop. But, if you don’t then you definitely must read on. Recursion is a phenomenon which is said to have occurred when a funct...Discuss·49 readsRecursion
Harsh MangeforBit Fetchharshmange.hashnode.net·Apr 14, 2023What is Database Indexing by B-Tree Indexing approach?Introduction B-Tree indexing is a widely used technique for indexing data in relational databases. It provides fast access to data by creating a balanced tree structure of index pages that contain pointers to the data pages in the table. In this appr...DiscussDatabase IndexingDatabases
Anurag PathakforAnurag Pathakanurag-pathak.hashnode.net·Mar 31, 2023Different views of a Binary Tree.Some Properties of Binary Trees Let's understand some properties of the binary tree required to tackle the problems related to the view of binary trees. Every node has at most two children. Every child is inclined to 45° with the horizontal line di...Discuss·160 readsBinary TreesTree
Jeremiah Lanierformachinesinthecloudsmachinesintheclouds.hashnode.net·Mar 20, 2023Trees Data Structures with PythonOverview of Tree Data Structures A tree is a collection of nodes connected by edges. Each node in the tree can have zero or more child nodes, and each child node can have zero or more child nodes of its own. The topmost node in the tree is called the...Discuss·35 readsTree
Meher RushiforMeherRushimeher.hashnode.net·Mar 17, 2023Implementing a Basic Binary Tree Program in PharoIntroduction I encountered Pharo in the process of trying to find an interesting project to contribute to in the open-source community space. I will write a separate blog on How I came across the Pharo Community and Why I started learning such a nich...Discuss·11 likes·82 readsPharo
Loknath ReddyforLoknathloknath.hashnode.net·Feb 19, 2023Data Structure Non Linear data structure TreeWhat is a tree? A tree is a hierarchical data structure consisting of nodes connected by edges. Each node in the tree can have zero or more child nodes, and each child node can have its own child nodes. The topmost node in the tree is called the root...Discussdatastructure
Sagar MedtiyaforSagar Medtiyasagarmedtiya.hashnode.net·Jan 14, 2023Tree Data Structure in C++A tree is a non-linear data structure where each node is connected to several nodes with the help of pointers or references. This is a sample tree shown above. ✨Basic Tree Terminologies Root: The root of a tree is the first node of the tree. In th...Discuss·52 readsDSA 101DSA
Sarthak ThakkarforSarthak's blogmonktech.hashnode.net·Jan 7, 2023Trees : Introduction to Data Structures and Algorithms | Topic - 2What is a Tree? A tree is a nonlinear data structure. It is a collection of nodes where each node contains addresses of other nodes. A tree data structure has a root node, internal nodes and leaf nodes. The number of children of a node determines the...DiscussTree
Geeky Girlforgeekygrl.hashnode.net·Dec 14, 2022Introduction - TreeDefinition A tree is a data structure that is commonly used in computer science to store and organize data in a hierarchical manner. At the top of the tree is a root node, which branches out into multiple child nodes. Each child node can then have i...DiscussTree
Dhawal PandyaforDhawal Codesdhawalpandya01.hashnode.net·Dec 5, 2022The last Recursion Blog you’ll ever needThe ‘if’ statement that we need here is, either you know about recursion, or you don’t. If you know, then you can probably stop. But, if you don’t then you definitely must read on. Recursion is a phenomenon which is said to have occurred when a funct...Discuss·49 readsRecursion
AnnaforAnna's External Brainexternalbrain.hashnode.net·Sep 22, 2022Finding Maximum Depth of Binary TreeFrom my experience, getting used to traversing non-linear data structures takes a bit of time. So when you try to get hold of trees, you need something easy to practice and finding maximum depth of binary tree is a great place to start. The problem c...Discuss·32 readsTrees And Graphsdata structures