mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Generic "TCollection_Queue" class removed (along with "TCollection_QueueNode" and three instantiations in TColStd). Template class TCollection_Queue removed. The code using queue classes converted to use lists for the same purpose (replacing Push -> Append, Front -> First, Pop -> RemoveFirst). In OpenGl_Context, list is used as stack instead of queue, for it looks more natural for release of resources (last allocated - first released).
98 lines
2.6 KiB
Plaintext
98 lines
2.6 KiB
Plaintext
// Created on: 1992-10-12
|
|
// Created by: Denis PASCAL
|
|
// Copyright (c) 1992-1999 Matra Datavision
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <Standard_NoMoreObject.hxx>
|
|
#include <Standard_NoSuchObject.hxx>
|
|
#include <TColStd_ListOfInteger.hxx>
|
|
|
|
//=======================================================================
|
|
//function : GraphTools_BFSIterator
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
GraphTools_BFSIterator::GraphTools_BFSIterator () {}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Perform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void GraphTools_BFSIterator::Perform
|
|
(const Graph& G, const Vertex& V)
|
|
{
|
|
Standard_Integer index;
|
|
myVisited.Clear();
|
|
TColStd_ListOfInteger myReady;
|
|
|
|
index = myVisited.Add(V);
|
|
myReady.Append(index);
|
|
while (!myReady.IsEmpty()) {
|
|
Vertex w1 = myVisited (myReady.First());
|
|
myReady.RemoveFirst();
|
|
for (VIterator it(G,w1); it.More(); it.Next()) {
|
|
Vertex w2 = it.Value();
|
|
if (!myVisited.Contains(w2)) {
|
|
index = myVisited.Add(w2);
|
|
myReady.Append(index);
|
|
}
|
|
}
|
|
}
|
|
myCurrentIndex = 1;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : More
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
Standard_Boolean GraphTools_BFSIterator::More () const
|
|
{
|
|
return myCurrentIndex <= myVisited.Extent();
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Next
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void GraphTools_BFSIterator::Next ()
|
|
{
|
|
myCurrentIndex++;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Value
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const Vertex& GraphTools_BFSIterator::Value () const
|
|
{
|
|
return myVisited(myCurrentIndex);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|