File tree Expand file tree Collapse file tree 9 files changed +16
-80
lines changed Expand file tree Collapse file tree 9 files changed +16
-80
lines changed Original file line number Diff line number Diff line change @@ -89,18 +89,13 @@ <h1 id="Advanced_Algorithms_DataStructures_AVLTree_1" data-uid="Advanced.Algorit
89
89
< div class ="inheritance ">
90
90
< h5 > Inheritance</ h5 >
91
91
< div class ="level0 "> < a class ="xref " href ="https://docs.microsoft.com/dotnet/api/system.object "> Object</ a > </ div >
92
- < div class ="level1 "> < a class ="xref " href ="Advanced.Algorithms.DataStructures.BSTBase-1.html "> BSTBase</ a > <T></ div >
93
- < div class ="level2 "> < span class ="xref "> AVLTree<T></ span > </ div >
94
- </ div >
95
- < div classs ="implements ">
96
- < h5 > Implements</ h5 >
97
- < div > < span class ="xref "> IEnumerable</ span > <T></ div >
92
+ < div class ="level1 "> < span class ="xref "> AVLTree<T></ span > </ div >
98
93
</ div >
99
94
< h6 > < strong > Namespace</ strong > : < a class ="xref " href ="Advanced.Algorithms.DataStructures.html "> Advanced.Algorithms.DataStructures</ a > </ h6 >
100
95
< h6 > < strong > Assembly</ strong > : Advanced.Algorithms.dll</ h6 >
101
96
< h5 id ="Advanced_Algorithms_DataStructures_AVLTree_1_syntax "> Syntax</ h5 >
102
97
< div class ="codewrapper ">
103
- < pre > < code class ="lang-csharp hljs "> public class AVLTree<T> : BSTBase<T>, IEnumerable<T> where T : IComparable</ code > </ pre >
98
+ < pre > < code class ="lang-csharp hljs "> public class AVLTree<T> : IEnumerable<T> where T : IComparable</ code > </ pre >
104
99
</ div >
105
100
< h5 class ="typeParameters "> Type Parameters</ h5 >
106
101
< table class ="table table-bordered table-striped table-condensed ">
@@ -701,10 +696,6 @@ <h5 class="returns">Returns</h5>
701
696
</ tr >
702
697
</ tbody >
703
698
</ table >
704
- < h3 id ="implements "> Implements</ h3 >
705
- < div >
706
- < span class ="xref "> IEnumerable<></ span >
707
- </ div >
708
699
</ article >
709
700
</ div >
710
701
Original file line number Diff line number Diff line change @@ -89,18 +89,13 @@ <h1 id="Advanced_Algorithms_DataStructures_BST_1" data-uid="Advanced.Algorithms.
89
89
< div class ="inheritance ">
90
90
< h5 > Inheritance</ h5 >
91
91
< div class ="level0 "> < a class ="xref " href ="https://docs.microsoft.com/dotnet/api/system.object "> Object</ a > </ div >
92
- < div class ="level1 "> < a class ="xref " href ="Advanced.Algorithms.DataStructures.BSTBase-1.html "> BSTBase</ a > <T></ div >
93
- < div class ="level2 "> < span class ="xref "> BST<T></ span > </ div >
94
- </ div >
95
- < div classs ="implements ">
96
- < h5 > Implements</ h5 >
97
- < div > < span class ="xref "> IEnumerable</ span > <T></ div >
92
+ < div class ="level1 "> < span class ="xref "> BST<T></ span > </ div >
98
93
</ div >
99
94
< h6 > < strong > Namespace</ strong > : < a class ="xref " href ="Advanced.Algorithms.DataStructures.html "> Advanced.Algorithms.DataStructures</ a > </ h6 >
100
95
< h6 > < strong > Assembly</ strong > : Advanced.Algorithms.dll</ h6 >
101
96
< h5 id ="Advanced_Algorithms_DataStructures_BST_1_syntax "> Syntax</ h5 >
102
97
< div class ="codewrapper ">
103
- < pre > < code class ="lang-csharp hljs "> public class BST<T> : BSTBase<T>, IEnumerable<T> where T : IComparable</ code > </ pre >
98
+ < pre > < code class ="lang-csharp hljs "> public class BST<T> : IEnumerable<T> where T : IComparable</ code > </ pre >
104
99
</ div >
105
100
< h5 class ="typeParameters "> Type Parameters</ h5 >
106
101
< table class ="table table-bordered table-striped table-condensed ">
@@ -630,10 +625,6 @@ <h5 class="returns">Returns</h5>
630
625
</ tr >
631
626
</ tbody >
632
627
</ table >
633
- < h3 id ="implements "> Implements</ h3 >
634
- < div >
635
- < span class ="xref "> IEnumerable<></ span >
636
- </ div >
637
628
</ article >
638
629
</ div >
639
630
Original file line number Diff line number Diff line change @@ -89,18 +89,13 @@ <h1 id="Advanced_Algorithms_DataStructures_RedBlackTree_1" data-uid="Advanced.Al
89
89
< div class ="inheritance ">
90
90
< h5 > Inheritance</ h5 >
91
91
< div class ="level0 "> < a class ="xref " href ="https://docs.microsoft.com/dotnet/api/system.object "> Object</ a > </ div >
92
- < div class ="level1 "> < a class ="xref " href ="Advanced.Algorithms.DataStructures.BSTBase-1.html "> BSTBase</ a > <T></ div >
93
- < div class ="level2 "> < span class ="xref "> RedBlackTree<T></ span > </ div >
94
- </ div >
95
- < div classs ="implements ">
96
- < h5 > Implements</ h5 >
97
- < div > < span class ="xref "> IEnumerable</ span > <T></ div >
92
+ < div class ="level1 "> < span class ="xref "> RedBlackTree<T></ span > </ div >
98
93
</ div >
99
94
< h6 > < strong > Namespace</ strong > : < a class ="xref " href ="Advanced.Algorithms.DataStructures.html "> Advanced.Algorithms.DataStructures</ a > </ h6 >
100
95
< h6 > < strong > Assembly</ strong > : Advanced.Algorithms.dll</ h6 >
101
96
< h5 id ="Advanced_Algorithms_DataStructures_RedBlackTree_1_syntax "> Syntax</ h5 >
102
97
< div class ="codewrapper ">
103
- < pre > < code class ="lang-csharp hljs "> public class RedBlackTree<T> : BSTBase<T>, IEnumerable<T> where T : IComparable</ code > </ pre >
98
+ < pre > < code class ="lang-csharp hljs "> public class RedBlackTree<T> : IEnumerable<T> where T : IComparable</ code > </ pre >
104
99
</ div >
105
100
< h5 class ="typeParameters "> Type Parameters</ h5 >
106
101
< table class ="table table-bordered table-striped table-condensed ">
@@ -689,10 +684,6 @@ <h5 class="returns">Returns</h5>
689
684
</ tr >
690
685
</ tbody >
691
686
</ table >
692
- < h3 id ="implements "> Implements</ h3 >
693
- < div >
694
- < span class ="xref "> IEnumerable<></ span >
695
- </ div >
696
687
</ article >
697
688
</ div >
698
689
Original file line number Diff line number Diff line change @@ -89,18 +89,13 @@ <h1 id="Advanced_Algorithms_DataStructures_SplayTree_1" data-uid="Advanced.Algor
89
89
< div class ="inheritance ">
90
90
< h5 > Inheritance</ h5 >
91
91
< div class ="level0 "> < a class ="xref " href ="https://docs.microsoft.com/dotnet/api/system.object "> Object</ a > </ div >
92
- < div class ="level1 "> < a class ="xref " href ="Advanced.Algorithms.DataStructures.BSTBase-1.html "> BSTBase</ a > <T></ div >
93
- < div class ="level2 "> < span class ="xref "> SplayTree<T></ span > </ div >
94
- </ div >
95
- < div classs ="implements ">
96
- < h5 > Implements</ h5 >
97
- < div > < span class ="xref "> IEnumerable</ span > <T></ div >
92
+ < div class ="level1 "> < span class ="xref "> SplayTree<T></ span > </ div >
98
93
</ div >
99
94
< h6 > < strong > Namespace</ strong > : < a class ="xref " href ="Advanced.Algorithms.DataStructures.html "> Advanced.Algorithms.DataStructures</ a > </ h6 >
100
95
< h6 > < strong > Assembly</ strong > : Advanced.Algorithms.dll</ h6 >
101
96
< h5 id ="Advanced_Algorithms_DataStructures_SplayTree_1_syntax "> Syntax</ h5 >
102
97
< div class ="codewrapper ">
103
- < pre > < code class ="lang-csharp hljs "> public class SplayTree<T> : BSTBase<T>, IEnumerable<T> where T : IComparable</ code > </ pre >
98
+ < pre > < code class ="lang-csharp hljs "> public class SplayTree<T> : IEnumerable<T> where T : IComparable</ code > </ pre >
104
99
</ div >
105
100
< h5 class ="typeParameters "> Type Parameters</ h5 >
106
101
< table class ="table table-bordered table-striped table-condensed ">
@@ -632,10 +627,6 @@ <h5 class="returns">Returns</h5>
632
627
</ tr >
633
628
</ tbody >
634
629
</ table >
635
- < h3 id ="implements "> Implements</ h3 >
636
- < div >
637
- < span class ="xref "> IEnumerable<></ span >
638
- </ div >
639
630
</ article >
640
631
</ div >
641
632
Original file line number Diff line number Diff line change @@ -89,18 +89,13 @@ <h1 id="Advanced_Algorithms_DataStructures_TreapTree_1" data-uid="Advanced.Algor
89
89
< div class ="inheritance ">
90
90
< h5 > Inheritance</ h5 >
91
91
< div class ="level0 "> < a class ="xref " href ="https://docs.microsoft.com/dotnet/api/system.object "> Object</ a > </ div >
92
- < div class ="level1 "> < a class ="xref " href ="Advanced.Algorithms.DataStructures.BSTBase-1.html "> BSTBase</ a > <T></ div >
93
- < div class ="level2 "> < span class ="xref "> TreapTree<T></ span > </ div >
94
- </ div >
95
- < div classs ="implements ">
96
- < h5 > Implements</ h5 >
97
- < div > < span class ="xref "> IEnumerable</ span > <T></ div >
92
+ < div class ="level1 "> < span class ="xref "> TreapTree<T></ span > </ div >
98
93
</ div >
99
94
< h6 > < strong > Namespace</ strong > : < a class ="xref " href ="Advanced.Algorithms.DataStructures.html "> Advanced.Algorithms.DataStructures</ a > </ h6 >
100
95
< h6 > < strong > Assembly</ strong > : Advanced.Algorithms.dll</ h6 >
101
96
< h5 id ="Advanced_Algorithms_DataStructures_TreapTree_1_syntax "> Syntax</ h5 >
102
97
< div class ="codewrapper ">
103
- < pre > < code class ="lang-csharp hljs "> public class TreapTree<T> : BSTBase<T>, IEnumerable<T> where T : IComparable</ code > </ pre >
98
+ < pre > < code class ="lang-csharp hljs "> public class TreapTree<T> : IEnumerable<T> where T : IComparable</ code > </ pre >
104
99
</ div >
105
100
< h5 class ="typeParameters "> Type Parameters</ h5 >
106
101
< table class ="table table-bordered table-striped table-condensed ">
@@ -632,10 +627,6 @@ <h5 class="returns">Returns</h5>
632
627
</ tr >
633
628
</ tbody >
634
629
</ table >
635
- < h3 id ="implements "> Implements</ h3 >
636
- < div >
637
- < span class ="xref "> IEnumerable<></ span >
638
- </ div >
639
630
</ article >
640
631
</ div >
641
632
Original file line number Diff line number Diff line change @@ -108,8 +108,6 @@ <h4><a class="xref" href="Advanced.Algorithms.DataStructures.BpTree-1.html">BpTr
108
108
< h4 > < a class ="xref " href ="Advanced.Algorithms.DataStructures.BST-1.html "> BST<T></ a > </ h4 >
109
109
< section > < p > A binary search tree implementation.</ p >
110
110
</ section >
111
- < h4 > < a class ="xref " href ="Advanced.Algorithms.DataStructures.BSTBase-1.html "> BSTBase<T></ a > </ h4 >
112
- < section > </ section >
113
111
< h4 > < a class ="xref " href ="Advanced.Algorithms.DataStructures.BTree-1.html "> BTree<T></ a > </ h4 >
114
112
< section > < p > A B-tree implementation.</ p >
115
113
</ section >
Original file line number Diff line number Diff line change 79
79
< li >
80
80
< a href ="Advanced.Algorithms.DataStructures.BST-1.html " name ="" title ="BST<T> "> BST<T></ a >
81
81
</ li >
82
- < li >
83
- < a href ="Advanced.Algorithms.DataStructures.BSTBase-1.html " name ="" title ="BSTBase<T> "> BSTBase<T></ a >
84
- </ li >
85
82
< li >
86
83
< a href ="Advanced.Algorithms.DataStructures.BTree-1.html " name ="" title ="BTree<T> "> BTree<T></ a >
87
84
</ li >
You can’t perform that action at this time.
0 commit comments