AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Count tree root nodes

Ein Thema von WojTec · begonnen am 26. Aug 2014 · letzter Beitrag vom 26. Aug 2014
 
WojTec

Registriert seit: 17. Mai 2007
482 Beiträge
 
Delphi XE6 Professional
 
#1

Count tree root nodes

  Alt 26. Aug 2014, 10:01
Delphi-Version: XE5
Today I need to know how many root nodes (I mean without parent node) has my tree. I wrote this:

Delphi-Quellcode:
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);
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?
  Mit Zitat antworten Zitat
 


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 22:24 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