![]() |
Delphi-Version: XE5
Count tree root nodes
Today I need to know how many root nodes (I mean without parent node) has my tree. I wrote this:
Delphi-Quellcode:
This is working, but is quite lame IMO - function will be slow and sloow and slooow if many nodes on tree. Is possible to do it in pro mode?
function CountTreeNodes(ATree: TTreeView; ALevel: Word): Integer;
var I: integer; begin Result := 0; for I := 0 to ATree.Items.Count - 1 do begin if ALevel = ATree.Items[I].Level then Inc(Result) ; end; end; Count := CountTreeNodes(Tree, 0); |
AW: Count tree root nodes
This should be slightly faster:
Delphi-Quellcode:
function CountRootNodes(ATree: TTreeView): Integer;
var node: TTreeNode; begin Result := 0; node := ATree.Items.GetFirstNode; while node <> nil do begin Inc(Result); node := node.GetNextSibling; end; end; |
AW: Count tree root nodes
You are right that this is very slow and the documentation also stated this
![]() http://docwiki.embarcadero.com/Libraries/XE6/en/Vcl.ComCtrls.TTreeView.Items Note: Accessing tree view items by index can be time-intensive, particularly when the tree view contains many items. For optimal performance, try to design your application so that it has as few dependencies on the tree view's item index as possible. But there are some methods to walk through the tree: Get the very first node by calling
Delphi-Quellcode:
.
MyNode := MyTreeView.Items[0];
Walk through the tree until you get the desired level with ![]()
Delphi-Quellcode:
Once you got the node at the desired level you can step through all nodes on this level with
while Assigned( MyNode ) and ( MyNode.Level <> ALevel ) do
MyNode := MyNode.GetNext; ![]()
Delphi-Quellcode:
while Assigned( MyNode ) do
MyNode := MyNode.GetNextSibling; |
AW: Count tree root nodes
If performance is an issue for you, why don't you use the virtual trees? They are faster by orders of magnitude...
![]() And for your problem you have
Delphi-Quellcode:
.
VirtualStringTree1.ChildCount[CurrentNode]
This property only fetches the appropriate value, because this value is already known, so there is no need for counting or anything. Faster is impossible. ;-) |
AW: Count tree root nodes
Zitat:
Code:
Counting all nodes at level 1 should return 4 and not 2 ;)
+-n1
+-n2 +-n3 +-n4 +-n5 +-n6 |
Re: Count tree root nodes
I used @Uwe Raabe and @Sir Rufo method, also thanks for explanation :)
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 01:21 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz