2023-12-04 13:17:13 +00:00
using System ;
2020-12-09 22:26:05 +00:00
using System.Collections ;
using System.Collections.Generic ;
using System.Diagnostics.CodeAnalysis ;
namespace Ryujinx.Common.Collections
{
/// <summary>
/// Dictionary that provides the ability for O(logN) Lookups for keys that exist in the Dictionary, and O(logN) lookups for keys immediately greater than or less than a specified key.
/// </summary>
2023-06-28 16:41:38 +00:00
/// <typeparam name="TKey">Key</typeparam>
/// <typeparam name="TValue">Value</typeparam>
public class TreeDictionary < TKey , TValue > : IntrusiveRedBlackTreeImpl < Node < TKey , TValue > > , IDictionary < TKey , TValue > where TKey : IComparable < TKey >
2020-12-09 22:26:05 +00:00
{
#region Public Methods
/// <summary>
/// Returns the value of the node whose key is <paramref name="key"/>, or the default value if no such node exists.
/// </summary>
/// <param name="key">Key of the node value to get</param>
/// <returns>Value associated w/ <paramref name="key"/></returns>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
public TValue Get ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2020-12-09 22:26:05 +00:00
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = GetNode ( key ) ;
2020-12-09 22:26:05 +00:00
if ( node = = null )
{
return default ;
}
return node . Value ;
}
/// <summary>
/// Adds a new node into the tree whose key is <paramref name="key"/> key and value is <paramref name="value"/>.
/// <br></br>
/// <b>Note:</b> Adding the same key multiple times will cause the value for that key to be overwritten.
/// </summary>
/// <param name="key">Key of the node to add</param>
/// <param name="value">Value of the node to add</param>
/// <exception cref="ArgumentNullException"><paramref name="key"/> or <paramref name="value"/> are null</exception>
2023-06-28 16:41:38 +00:00
public void Add ( TKey key , TValue value )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
ArgumentNullException . ThrowIfNull ( value ) ;
2020-12-09 22:26:05 +00:00
Insert ( key , value ) ;
}
/// <summary>
/// Removes the node whose key is <paramref name="key"/> from the tree.
/// </summary>
/// <param name="key">Key of the node to remove</param>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
public void Remove ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2020-12-09 22:26:05 +00:00
if ( Delete ( key ) ! = null )
{
2022-08-26 18:21:48 +00:00
Count - - ;
2020-12-09 22:26:05 +00:00
}
}
/// <summary>
/// Returns the value whose key is equal to or immediately less than <paramref name="key"/>.
/// </summary>
/// <param name="key">Key for which to find the floor value of</param>
/// <returns>Key of node immediately less than <paramref name="key"/></returns>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
public TKey Floor ( TKey key )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = FloorNode ( key ) ;
2020-12-09 22:26:05 +00:00
if ( node ! = null )
{
return node . Key ;
}
return default ;
}
/// <summary>
/// Returns the node whose key is equal to or immediately greater than <paramref name="key"/>.
/// </summary>
/// <param name="key">Key for which to find the ceiling node of</param>
/// <returns>Key of node immediately greater than <paramref name="key"/></returns>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
public TKey Ceiling ( TKey key )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = CeilingNode ( key ) ;
2020-12-09 22:26:05 +00:00
if ( node ! = null )
{
return node . Key ;
}
return default ;
}
/// <summary>
/// Finds the value whose key is immediately greater than <paramref name="key"/>.
/// </summary>
/// <param name="key">Key to find the successor of</param>
/// <returns>Value</returns>
2023-06-28 16:41:38 +00:00
public TKey SuccessorOf ( TKey key )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = GetNode ( key ) ;
2020-12-09 22:26:05 +00:00
if ( node ! = null )
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > successor = SuccessorOf ( node ) ;
2020-12-09 22:26:05 +00:00
return successor ! = null ? successor . Key : default ;
}
return default ;
}
/// <summary>
/// Finds the value whose key is immediately less than <paramref name="key"/>.
/// </summary>
/// <param name="key">Key to find the predecessor of</param>
/// <returns>Value</returns>
2023-06-28 16:41:38 +00:00
public TKey PredecessorOf ( TKey key )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = GetNode ( key ) ;
2020-12-09 22:26:05 +00:00
if ( node ! = null )
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > predecessor = PredecessorOf ( node ) ;
2020-12-09 22:26:05 +00:00
return predecessor ! = null ? predecessor . Key : default ;
}
return default ;
}
/// <summary>
/// Adds all the nodes in the dictionary as key/value pairs into <paramref name="list"/>.
/// <br></br>
/// The key/value pairs will be added in Level Order.
/// </summary>
/// <param name="list">List to add the tree pairs into</param>
2023-06-28 16:41:38 +00:00
public List < KeyValuePair < TKey , TValue > > AsLevelOrderList ( )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
List < KeyValuePair < TKey , TValue > > list = new ( ) ;
2020-12-09 22:26:05 +00:00
2023-06-28 16:41:38 +00:00
Queue < Node < TKey , TValue > > nodes = new ( ) ;
2020-12-09 22:26:05 +00:00
2022-08-26 18:21:48 +00:00
if ( this . Root ! = null )
2020-12-09 22:26:05 +00:00
{
2022-08-26 18:21:48 +00:00
nodes . Enqueue ( this . Root ) ;
2020-12-09 22:26:05 +00:00
}
2023-06-28 16:41:38 +00:00
while ( nodes . TryDequeue ( out Node < TKey , TValue > node ) )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
list . Add ( new KeyValuePair < TKey , TValue > ( node . Key , node . Value ) ) ;
2020-12-09 22:26:05 +00:00
if ( node . Left ! = null )
{
nodes . Enqueue ( node . Left ) ;
}
if ( node . Right ! = null )
{
nodes . Enqueue ( node . Right ) ;
}
}
return list ;
}
/// <summary>
/// Adds all the nodes in the dictionary into <paramref name="list"/>.
/// </summary>
2021-09-19 12:55:07 +00:00
/// <returns>A list of all KeyValuePairs sorted by Key Order</returns>
2023-06-28 16:41:38 +00:00
public List < KeyValuePair < TKey , TValue > > AsList ( )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
List < KeyValuePair < TKey , TValue > > list = new ( ) ;
2020-12-09 22:26:05 +00:00
2022-08-26 18:21:48 +00:00
AddToList ( Root , list ) ;
2020-12-09 22:26:05 +00:00
return list ;
}
2021-09-19 12:55:07 +00:00
2020-12-09 22:26:05 +00:00
#endregion
2021-09-19 12:55:07 +00:00
2020-12-09 22:26:05 +00:00
#region Private Methods ( BST )
2021-09-19 12:55:07 +00:00
/// <summary>
/// Adds all nodes that are children of or contained within <paramref name="node"/> into <paramref name="list"/>, in Key Order.
/// </summary>
/// <param name="node">The node to search for nodes within</param>
/// <param name="list">The list to add node to</param>
2023-06-28 16:41:38 +00:00
private void AddToList ( Node < TKey , TValue > node , List < KeyValuePair < TKey , TValue > > list )
2021-09-19 12:55:07 +00:00
{
if ( node = = null )
{
return ;
}
AddToList ( node . Left , list ) ;
2023-06-28 16:41:38 +00:00
list . Add ( new KeyValuePair < TKey , TValue > ( node . Key , node . Value ) ) ;
2021-09-19 12:55:07 +00:00
AddToList ( node . Right , list ) ;
}
2020-12-09 22:26:05 +00:00
/// <summary>
/// Retrieve the node reference whose key is <paramref name="key"/>, or null if no such node exists.
/// </summary>
/// <param name="key">Key of the node to get</param>
/// <returns>Node reference in the tree</returns>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
private Node < TKey , TValue > GetNode ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2020-12-09 22:26:05 +00:00
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = Root ;
2020-12-09 22:26:05 +00:00
while ( node ! = null )
{
int cmp = key . CompareTo ( node . Key ) ;
if ( cmp < 0 )
{
node = node . Left ;
}
else if ( cmp > 0 )
{
node = node . Right ;
}
else
{
return node ;
}
}
return null ;
}
/// <summary>
/// Inserts a new node into the tree whose key is <paramref name="key"/> and value is <paramref name="value"/>.
/// <br></br>
/// Adding the same key multiple times will overwrite the previous value.
/// </summary>
/// <param name="key">Key of the node to insert</param>
/// <param name="value">Value of the node to insert</param>
2023-06-28 16:41:38 +00:00
private void Insert ( TKey key , TValue value )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > newNode = BSTInsert ( key , value ) ;
2020-12-09 22:26:05 +00:00
RestoreBalanceAfterInsertion ( newNode ) ;
}
/// <summary>
/// Insertion Mechanism for a Binary Search Tree (BST).
/// <br></br>
/// Iterates the tree starting from the root and inserts a new node where all children in the left subtree are less than <paramref name="key"/>, and all children in the right subtree are greater than <paramref name="key"/>.
/// <br></br>
/// <b>Note: </b> If a node whose key is <paramref name="key"/> already exists, it's value will be overwritten.
/// </summary>
/// <param name="key">Key of the node to insert</param>
/// <param name="value">Value of the node to insert</param>
/// <returns>The inserted Node</returns>
2023-06-28 16:41:38 +00:00
private Node < TKey , TValue > BSTInsert ( TKey key , TValue value )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > parent = null ;
Node < TKey , TValue > node = Root ;
2020-12-09 22:26:05 +00:00
while ( node ! = null )
{
parent = node ;
int cmp = key . CompareTo ( node . Key ) ;
if ( cmp < 0 )
{
node = node . Left ;
}
else if ( cmp > 0 )
{
node = node . Right ;
}
else
{
node . Value = value ;
return node ;
}
}
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > newNode = new ( key , value , parent ) ;
2020-12-09 22:26:05 +00:00
if ( newNode . Parent = = null )
{
2022-08-26 18:21:48 +00:00
Root = newNode ;
2020-12-09 22:26:05 +00:00
}
else if ( key . CompareTo ( parent . Key ) < 0 )
{
parent . Left = newNode ;
}
else
{
parent . Right = newNode ;
}
2022-08-26 18:21:48 +00:00
Count + + ;
2020-12-09 22:26:05 +00:00
return newNode ;
}
/// <summary>
/// Removes <paramref name="key"/> from the dictionary, if it exists.
/// </summary>
/// <param name="key">Key of the node to delete</param>
/// <returns>The deleted Node</returns>
2023-06-28 16:41:38 +00:00
private Node < TKey , TValue > Delete ( TKey key )
2020-12-09 22:26:05 +00:00
{
// O(1) Retrieval
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > nodeToDelete = GetNode ( key ) ;
2020-12-09 22:26:05 +00:00
2023-06-28 16:41:38 +00:00
if ( nodeToDelete = = null )
{
return null ;
}
2020-12-09 22:26:05 +00:00
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > replacementNode ;
2020-12-09 22:26:05 +00:00
if ( LeftOf ( nodeToDelete ) = = null | | RightOf ( nodeToDelete ) = = null )
{
replacementNode = nodeToDelete ;
}
else
{
replacementNode = PredecessorOf ( nodeToDelete ) ;
}
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > tmp = LeftOf ( replacementNode ) ? ? RightOf ( replacementNode ) ;
2020-12-09 22:26:05 +00:00
if ( tmp ! = null )
{
tmp . Parent = ParentOf ( replacementNode ) ;
}
if ( ParentOf ( replacementNode ) = = null )
{
2022-08-26 18:21:48 +00:00
Root = tmp ;
2020-12-09 22:26:05 +00:00
}
else if ( replacementNode = = LeftOf ( ParentOf ( replacementNode ) ) )
{
ParentOf ( replacementNode ) . Left = tmp ;
}
else
{
ParentOf ( replacementNode ) . Right = tmp ;
}
if ( replacementNode ! = nodeToDelete )
{
nodeToDelete . Key = replacementNode . Key ;
nodeToDelete . Value = replacementNode . Value ;
}
if ( tmp ! = null & & ColorOf ( replacementNode ) = = Black )
{
RestoreBalanceAfterRemoval ( tmp ) ;
}
return replacementNode ;
}
/// <summary>
/// Returns the node whose key immediately less than or equal to <paramref name="key"/>.
/// </summary>
/// <param name="key">Key for which to find the floor node of</param>
/// <returns>Node whose key is immediately less than or equal to <paramref name="key"/>, or null if no such node is found.</returns>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
private Node < TKey , TValue > FloorNode ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > tmp = Root ;
2020-12-09 22:26:05 +00:00
while ( tmp ! = null )
{
int cmp = key . CompareTo ( tmp . Key ) ;
if ( cmp > 0 )
{
if ( tmp . Right ! = null )
{
tmp = tmp . Right ;
}
else
{
return tmp ;
}
}
else if ( cmp < 0 )
{
if ( tmp . Left ! = null )
{
tmp = tmp . Left ;
}
else
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > parent = tmp . Parent ;
Node < TKey , TValue > ptr = tmp ;
2020-12-09 22:26:05 +00:00
while ( parent ! = null & & ptr = = parent . Left )
{
ptr = parent ;
parent = parent . Parent ;
}
return parent ;
}
}
else
{
return tmp ;
}
}
return null ;
}
/// <summary>
/// Returns the node whose key is immediately greater than or equal to than <paramref name="key"/>.
/// </summary>
/// <param name="key">Key for which to find the ceiling node of</param>
/// <returns>Node whose key is immediately greater than or equal to <paramref name="key"/>, or null if no such node is found.</returns>
/// <exception cref="ArgumentNullException"><paramref name="key"/> is null</exception>
2023-06-28 16:41:38 +00:00
private Node < TKey , TValue > CeilingNode ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > tmp = Root ;
2020-12-09 22:26:05 +00:00
while ( tmp ! = null )
{
int cmp = key . CompareTo ( tmp . Key ) ;
if ( cmp < 0 )
{
if ( tmp . Left ! = null )
{
tmp = tmp . Left ;
}
else
{
return tmp ;
}
}
else if ( cmp > 0 )
{
if ( tmp . Right ! = null )
{
tmp = tmp . Right ;
}
else
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > parent = tmp . Parent ;
Node < TKey , TValue > ptr = tmp ;
2020-12-09 22:26:05 +00:00
while ( parent ! = null & & ptr = = parent . Right )
{
ptr = parent ;
parent = parent . Parent ;
}
return parent ;
}
}
else
{
return tmp ;
}
}
return null ;
}
#endregion
#region Interface Implementations
// Method descriptions are not provided as they are already included as part of the interface.
2023-06-28 16:41:38 +00:00
public bool ContainsKey ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2020-12-09 22:26:05 +00:00
return GetNode ( key ) ! = null ;
}
2023-06-28 16:41:38 +00:00
bool IDictionary < TKey , TValue > . Remove ( TKey key )
2020-12-09 22:26:05 +00:00
{
2022-08-26 18:21:48 +00:00
int count = Count ;
2020-12-09 22:26:05 +00:00
Remove ( key ) ;
2022-08-26 18:21:48 +00:00
return count > Count ;
2020-12-09 22:26:05 +00:00
}
2023-06-28 16:41:38 +00:00
public bool TryGetValue ( TKey key , [ MaybeNullWhen ( false ) ] out TValue value )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( key ) ;
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = GetNode ( key ) ;
2020-12-09 22:26:05 +00:00
value = node ! = null ? node . Value : default ;
return node ! = null ;
}
2023-06-28 16:41:38 +00:00
public void Add ( KeyValuePair < TKey , TValue > item )
2020-12-09 22:26:05 +00:00
{
2022-12-27 19:27:11 +00:00
ArgumentNullException . ThrowIfNull ( item . Key ) ;
2020-12-09 22:26:05 +00:00
Add ( item . Key , item . Value ) ;
}
2023-06-28 16:41:38 +00:00
public bool Contains ( KeyValuePair < TKey , TValue > item )
2020-12-09 22:26:05 +00:00
{
if ( item . Key = = null )
{
return false ;
}
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = GetNode ( item . Key ) ;
2020-12-09 22:26:05 +00:00
if ( node ! = null )
{
return node . Key . Equals ( item . Key ) & & node . Value . Equals ( item . Value ) ;
}
return false ;
}
2023-06-28 16:41:38 +00:00
public void CopyTo ( KeyValuePair < TKey , TValue > [ ] array , int arrayIndex )
2020-12-09 22:26:05 +00:00
{
if ( arrayIndex < 0 | | array . Length - arrayIndex < this . Count )
{
throw new ArgumentOutOfRangeException ( nameof ( arrayIndex ) ) ;
}
2023-06-28 16:41:38 +00:00
SortedList < TKey , TValue > list = GetKeyValues ( ) ;
2020-12-09 22:26:05 +00:00
int offset = 0 ;
for ( int i = arrayIndex ; i < array . Length & & offset < list . Count ; i + + )
{
2023-06-28 16:41:38 +00:00
array [ i ] = new KeyValuePair < TKey , TValue > ( list . Keys [ i ] , list . Values [ i ] ) ;
2020-12-09 22:26:05 +00:00
offset + + ;
}
}
2023-06-28 16:41:38 +00:00
public bool Remove ( KeyValuePair < TKey , TValue > item )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
Node < TKey , TValue > node = GetNode ( item . Key ) ;
2020-12-09 22:26:05 +00:00
if ( node = = null )
{
return false ;
}
if ( node . Value . Equals ( item . Value ) )
{
2022-08-26 18:21:48 +00:00
int count = Count ;
2020-12-09 22:26:05 +00:00
Remove ( item . Key ) ;
2022-08-26 18:21:48 +00:00
return count > Count ;
2020-12-09 22:26:05 +00:00
}
return false ;
}
2023-06-28 16:41:38 +00:00
public IEnumerator < KeyValuePair < TKey , TValue > > GetEnumerator ( )
2020-12-09 22:26:05 +00:00
{
return GetKeyValues ( ) . GetEnumerator ( ) ;
}
IEnumerator IEnumerable . GetEnumerator ( )
{
return GetKeyValues ( ) . GetEnumerator ( ) ;
}
2023-06-28 16:41:38 +00:00
public ICollection < TKey > Keys = > GetKeyValues ( ) . Keys ;
2020-12-09 22:26:05 +00:00
2023-06-28 16:41:38 +00:00
public ICollection < TValue > Values = > GetKeyValues ( ) . Values ;
2020-12-09 22:26:05 +00:00
public bool IsReadOnly = > false ;
2023-06-28 16:41:38 +00:00
public TValue this [ TKey key ]
2022-05-02 23:30:02 +00:00
{
2020-12-09 22:26:05 +00:00
get = > Get ( key ) ;
2022-05-02 23:30:02 +00:00
set = > Add ( key , value ) ;
2020-12-09 22:26:05 +00:00
}
#endregion
2022-08-26 18:21:48 +00:00
2020-12-09 22:26:05 +00:00
#region Private Interface Helper Methods
/// <summary>
/// Returns a sorted list of all the node keys / values in the tree.
/// </summary>
/// <returns>List of node keys</returns>
2023-06-28 16:41:38 +00:00
private SortedList < TKey , TValue > GetKeyValues ( )
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
SortedList < TKey , TValue > set = new ( ) ;
Queue < Node < TKey , TValue > > queue = new ( ) ;
2022-08-26 18:21:48 +00:00
if ( Root ! = null )
2020-12-09 22:26:05 +00:00
{
2022-08-26 18:21:48 +00:00
queue . Enqueue ( Root ) ;
2020-12-09 22:26:05 +00:00
}
2023-06-28 16:41:38 +00:00
while ( queue . TryDequeue ( out Node < TKey , TValue > node ) )
2020-12-09 22:26:05 +00:00
{
set . Add ( node . Key , node . Value ) ;
if ( null ! = node . Left )
{
queue . Enqueue ( node . Left ) ;
}
if ( null ! = node . Right )
{
queue . Enqueue ( node . Right ) ;
}
}
return set ;
}
2022-08-26 18:21:48 +00:00
2020-12-09 22:26:05 +00:00
#endregion
}
/// <summary>
/// Represents a node in the TreeDictionary which contains a key and value of generic type K and V, respectively.
/// </summary>
2023-06-28 16:41:38 +00:00
/// <typeparam name="TKey">Key of the node</typeparam>
/// <typeparam name="TValue">Value of the node</typeparam>
public class Node < TKey , TValue > : IntrusiveRedBlackTreeNode < Node < TKey , TValue > > where TKey : IComparable < TKey >
2020-12-09 22:26:05 +00:00
{
2023-06-28 16:41:38 +00:00
internal TKey Key ;
internal TValue Value ;
2022-08-26 18:21:48 +00:00
2023-06-28 16:41:38 +00:00
internal Node ( TKey key , TValue value , Node < TKey , TValue > parent )
2020-12-09 22:26:05 +00:00
{
2022-05-02 23:30:02 +00:00
Key = key ;
Value = value ;
Parent = parent ;
2020-12-09 22:26:05 +00:00
}
}
}