Skip to content

Commit a545dbd

Browse files
committed
updated import lines
1 parent 234eb0b commit a545dbd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

contents/tree_traversal/tree_traversal.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Trees are naturally recursive data structures, and because of this, we cannot ac
88
{% sample lang="cpp" %}
99
[import:12-15, lang:"cpp"](code/c++/tree_example.cpp)
1010
{% sample lang="cs" %}
11-
[import:7-11, lang:"csharp"](code/csharp/Tree.cs)
11+
[import:6-10, lang:"csharp"](code/csharp/Tree.cs)
1212
{% sample lang="c" %}
1313
[import:7-11, lang:"c"](code/c/tree_traversal.c)
1414
{% sample lang="java" %}
@@ -54,7 +54,7 @@ Because of this, the most straightforward way to traverse the tree might be recu
5454
{% sample lang="cpp" %}
5555
[import:17-24, lang:"cpp"](code/c++/tree_example.cpp)
5656
{% sample lang="cs" %}
57-
[import:34-45, lang:"csharp"](code/csharp/Tree.cs)
57+
[import:33-44, lang:"csharp"](code/csharp/Tree.cs)
5858
{% sample lang="c" %}
5959
[import:37-45, lang:"c"](code/c/tree_traversal.c)
6060
{% sample lang="java" %}
@@ -108,7 +108,7 @@ Now, in this case the first element searched through is still the root of the tr
108108
{% sample lang="cpp" %}
109109
[import:26-31, lang:"cpp"](code/c++/tree_example.cpp)
110110
{% sample lang="cs" %}
111-
[import:47-58, lang:"csharp"](code/csharp/Tree.cs)
111+
[import:46-57, lang:"csharp"](code/csharp/Tree.cs)
112112
{% sample lang="c" %}
113113
[import:47-53, lang:"c"](code/c/tree_traversal.c)
114114
{% sample lang="java" %}
@@ -157,7 +157,7 @@ In this case, the first node visited is at the bottom of the tree and moves up t
157157
{% sample lang="cpp" %}
158158
[import:34-52 lang:"cpp"](code/c++/tree_example.cpp)
159159
{% sample lang="cs" %}
160-
[import:60-84, lang:"csharp"](code/csharp/Tree.cs)
160+
[import:59-83, lang:"csharp"](code/csharp/Tree.cs)
161161
{% sample lang="c" %}
162162
[import:55-73, lang:"c"](code/c/tree_traversal.c)
163163
{% sample lang="java" %}
@@ -215,7 +215,7 @@ In code, it looks like this:
215215
{% sample lang="cpp" %}
216216
[import:55-70, lang:"cpp"](code/c++/tree_example.cpp)
217217
{% sample lang="cs" %}
218-
[import:86-99, lang:"csharp"](code/csharp/Tree.cs)
218+
[import:85-98, lang:"csharp"](code/csharp/Tree.cs)
219219
{% sample lang="c" %}
220220
[import:75-93, lang:"c"](code/c/tree_traversal.c)
221221
{% sample lang="java" %}
@@ -266,7 +266,7 @@ And this is exactly what Breadth-First Search (BFS) does! On top of that, it can
266266
{% sample lang="cpp" %}
267267
[import:73-86, lang:"cpp"](code/c++/tree_example.cpp)
268268
{% sample lang="cs" %}
269-
[import:101-114, lang:"csharp"](code/csharp/Tree.cs)
269+
[import:100-113, lang:"csharp"](code/csharp/Tree.cs)
270270
{% sample lang="c" %}
271271
[import:95-113, lang:"c"](code/c/tree_traversal.c)
272272
{% sample lang="java" %}

0 commit comments

Comments
 (0)