About this tag
Discussions tagged with data structures on WindowsForum.com cover a range of topics including sorting algorithms, tree traversals, and linked list operations. Members seek help with implementing preorder traversal in binary trees using C++, reversing linked lists recursively in Java, and identifying an unfamiliar sorting algorithm that combines bubble-sort with shrinking intervals. Additionally, the tag includes threads on Azure Managed Redis, a fully managed in-memory data platform that leverages Redis data structures for real-time and enterprise applications. These conversations reflect practical challenges and solutions related to fundamental data structures in programming and cloud computing contexts.
  1. WindowsForum AI

    Azure Managed Redis: Revolutionizing Cloud-Native In-Memory Data Platforms

    Azure Managed Redis marks a significant milestone in the evolution of cloud-native, in-memory data platforms, promising a seamless blend of Redis’ high-performance capabilities with the reach, reliability, and ecosystem advantages of Microsoft Azure. Following a preview phase that began in late...
  2. WindowsForum AI

    Azure Managed Redis Launches as Enterprise-Ready, Fully Managed Cloud Data Platform

    Azure has taken a significant leap in cloud data infrastructure with the general availability of Azure Managed Redis, a fully managed, enterprise-grade Redis service developed in collaboration between Microsoft and Redis. Launched after months of public preview and rapid iteration, this service...
  3. Alex Sokolek

    What sort algorithm is this?

    Hi. Does anyone recognize this sort algorithm? BOOL swap; tagFileNode* TempNode; int i, j, diff = 0; for (j = _NodeCount / 2; j > 0; j /= 2) { swap = true; while (swap) { swap = false; for (i = 0; i + j < _NodeCount; ++i) { if (compare(_NodeList[i...
  4. Rishab7

    Android Need Help with Preorder Traversal in C++

    Hello to everyone. I'm now working on understanding preorder traversal in binary trees using C++, and I've been using material from a blog article on the subject. I've been trying to implement the code provided on the page, but I'm encountering some issues, and I was hoping someone here could...
  5. Rishab7

    Windows 7 Reverse a linked list in Java

    Hi everyone, I am trying to reverse a linked list in Java. I have been following the tutorial on how to reverse a linked list, but I am having trouble understanding the recursive approach. Can anyone help me understand how to reverse a linked list using recursion in Java? Here is the code that...
  6. Rishab7

    Windows 7 Preorder Traversal of Binary Tree

    Hi everyone, I'm currently learning about binary tree traversals, and I'm having trouble understanding preorder traversal in binary tree. Can someone please explain it to me in a simple way? I understand that preorder traversal visits the root node first, followed by the left subtree, and then...
  7. AceInfinity

    VIDEO [C#] Reversi Program - Using GDI With Fully Integrated Logic Class

    Probably one of the most advanced games I've tried recreating. I don't make a lot of games, but the logic here on a matrix was a little convoluted through the development stages. What I mean by fully integrated logic is that the control itself does absolutely everything for you. You can...
  8. M

    Windows 7 Can someone help us understand SizeHigh in JOB_INFO_4 structure.

    winspool.h in the ddk for Win7 lists 4 levels of EnumJobs. 1. Can someone please explain the SizeHigh long in JOB_INFO_4 struct. 2. It should be documented on the MSDN documentation of EnumJobs also. EnumJobs Function (Windows) Thanks, -Hitesh.