1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
|
# Russian translation of manpages
# This file is distributed under the same license as the manpages-l10n package.
# Copyright © of this file:
# Azamat Hackimov <azamat.hackimov@gmail.com>, 2014, 2016-2017.
# Dmitry Bolkhovskikh <d20052005@yandex.ru>, 2017.
# Yuri Kozlov <yuray@komyakino.ru>, 2011-2019.
# Иван Павлов <pavia00@gmail.com>, 2017, 2019.
msgid ""
msgstr ""
"Project-Id-Version: manpages-l10n\n"
"POT-Creation-Date: 2024-03-01 17:12+0100\n"
"PO-Revision-Date: 2019-09-16 18:46+0300\n"
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
"Language-Team: Russian <man-pages-ru-talks@lists.sourceforge.net>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Lokalize 2.0\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "I<search>"
msgid "tsearch"
msgstr "I<поиск>"
#. type: TH
#: archlinux fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "2023-10-31"
msgstr "31 октября 2023 г."
#. type: TH
#: archlinux fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "Linux man-pages 6.06"
msgstr "Linux man-pages 6.06"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "ИМЯ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid ""
#| "tsearch, tfind, tdelete, twalk, tdestroy - manage a binary search tree"
msgid ""
"tsearch, tfind, tdelete, twalk, twalk_r, tdestroy - manage a binary search "
"tree"
msgstr ""
"tsearch, tfind, tdelete, twalk, tdestroy - работа с двоичным деревом поиска"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "LIBRARY"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Standard C library (I<libc>, I<-lc>)"
msgstr ""
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr "СИНТАКСИС"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<#include E<lt>search.hE<gt>>\n"
msgstr "B<#include E<lt>search.hE<gt>>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<typedef enum { preorder, postorder, endorder, leaf } VISIT;>\n"
msgstr "B<typedef enum { preorder, postorder, endorder, leaf } VISIT;>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<void *tsearch(const void *>I<key>B<, void **>I<rootp>B<,>\n"
"B< int (*>I<compar>B<)(const void *, const void *));>\n"
"B<void *tfind(const void *>I<key>B<, void *const *>I<rootp>B<,>\n"
"B< int (*>I<compar>B<)(const void *, const void *));>\n"
"B<void *tdelete(const void *restrict >I<key>B<, void **restrict >I<rootp>B<,>\n"
"B< int (*>I<compar>B<)(const void *, const void *));>\n"
"B<void twalk(const void *>I<root>B<,>\n"
"B< void (*>I<action>B<)(const void *>I<nodep>B<, VISIT >I<which>B<,>\n"
"B< int >I<depth>B<));>\n"
msgstr ""
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<#define _GNU_SOURCE> /* See feature_test_macros(7) */\n"
"B<#include E<lt>search.hE<gt>>\n"
msgstr ""
"B<#define _GNU_SOURCE> /* смотрите feature_test_macros(7) */\n"
"B<#include E<lt>search.hE<gt>>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "B<void twalk_r(const void *>I<root>B<,>\n"
#| "B< void (*>I<action>B<)(const void *>I<nodep>B<, VISIT >I<which>B<,>\n"
#| "B< void *>I<closure>B<),>\n"
#| "B< void *>I<closure>B<);>\n"
msgid ""
"B<void twalk_r(const void *>I<root>B<,>\n"
"B< void (*>I<action>B<)(const void *>I<nodep>B<, VISIT >I<which>B<,>\n"
"B< void *>I<closure>B<),>\n"
"B< void *>I<closure>B<);>\n"
"B<void tdestroy(void *>I<root>B<, void (*>I<free_node>B<)(void *>I<nodep>B<));>\n"
msgstr ""
"B<void twalk_r(const void *>I<root>B<,>\n"
"B< void (*>I<action>B<)(const void *>I<nodep>B<, VISIT >I<which>B<,>\n"
"B< void *>I<closure>B<),>\n"
"B< void *>I<closure>B<);>\n"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "ОПИСАНИЕ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tsearch>(), B<tfind>(), B<twalk>(), and B<tdelete>() manage a binary "
"search tree. They are generalized from Knuth (6.2.2) Algorithm T. The "
"first field in each node of the tree is a pointer to the corresponding data "
"item. (The calling program must store the actual data.) I<compar> points "
"to a comparison routine, which takes pointers to two items. It should "
"return an integer which is negative, zero, or positive, depending on whether "
"the first item is less than, equal to, or greater than the second."
msgstr ""
"Функции B<tsearch>(), B<tfind>(), B<twalk>() и B<tdelete>() позволяют "
"работать с двоичным деревом поиска. Они реализуют «Algorithm T» Д. Кнута "
"(6.2.2). Первое поле в каждом узле дерева является указателем на "
"соответствующий элемент данных (вызывающая программа должна хранить реальные "
"данные). Аргумент I<compar> указывает на процедуру сравнения, которой "
"передаются указатели на два элемента данных. Эта процедура должна возвращать "
"отрицательное, нулевое или положительное значение, если первый элемент "
"меньше, равен или больше чем второй."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tsearch>() searches the tree for an item. I<key> points to the item to "
"be searched for. I<rootp> points to a variable which points to the root of "
"the tree. If the tree is empty, then the variable that I<rootp> points to "
"should be set to NULL. If the item is found in the tree, then B<tsearch>() "
"returns a pointer to the corresponding tree node. (In other words, "
"B<tsearch>() returns a pointer to a pointer to the data item.) If the item "
"is not found, then B<tsearch>() adds it, and returns a pointer to the "
"corresponding tree node."
msgstr ""
"Функция B<tsearch>() ищет элемент в дереве. В I<key> задаётся разыскиваемый "
"элемент. В I<rootp> указывает на переменную, указывающую на корень дерева. "
"Если дерево пустое, то переменная, на которую ссылается I<rootp>, должна "
"быть равна NULL. Если элемент найден, то B<tsearch>() возвращает указатель "
"на соответствующий узел дерева (иначе говоря, B<tsearch>() возвращает "
"указатель на элемент данных). Если элемент не найден, то B<tsearch>() "
"добавляет его и возвращает указатель на соответствующий узел дерева."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tfind>() is like B<tsearch>(), except that if the item is not found, then "
"B<tfind>() returns NULL."
msgstr ""
"Функция B<tfind>() похожа на B<tsearch>(), за исключением того, что "
"B<tfind>() в случае нулевого результата поиска возвращает NULL."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tdelete>() deletes an item from the tree. Its arguments are the same as "
"for B<tsearch>()."
msgstr ""
"Функция B<tdelete>() удаляет элемент из дерева. Аргументы те же, что и для "
"B<tsearch>()."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<twalk>() performs depth-first, left-to-right traversal of a binary tree. "
"I<root> points to the starting node for the traversal. If that node is not "
"the root, then only part of the tree will be visited. B<twalk>() calls the "
"user function I<action> each time a node is visited (that is, three times "
"for an internal node, and once for a leaf). I<action>, in turn, takes three "
"arguments. The first argument is a pointer to the node being visited. The "
"structure of the node is unspecified, but it is possible to cast the pointer "
"to a pointer-to-pointer-to-element in order to access the element stored "
"within the node. The application must not modify the structure pointed to "
"by this argument. The second argument is an integer which takes one of the "
"values B<preorder>, B<postorder>, or B<endorder> depending on whether this "
"is the first, second, or third visit to the internal node, or the value "
"B<leaf> if this is the single visit to a leaf node. (These symbols are "
"defined in I<E<lt>search.hE<gt>>.) The third argument is the depth of the "
"node; the root node has depth zero."
msgstr ""
"Функция B<twalk>() выполняет обход дерева, сначала в глубину, затем слева "
"направо. Аргумент I<root> указывает на начальный элемент обхода. Если этот "
"узел не является корневым, то будет пройдена только часть дерева. Функция "
"B<twalk> вызывает пользовательскую функцию I<action> для каждого посещаемого "
"узла (то есть три раза для внутреннего узла и один раз для конечного узла-"
"листа). Функция I<action> получает три аргумента. Первый — указатель на "
"посещаемый узел. Структура узла не определена, но возможно привести "
"указатель к указателю на указатель на элемент, чтобы получить доступ к "
"элементу, хранящемуся внутри узла. Приложение не должно изменять структуру, "
"на которую указывает этот аргумент. Второй — целое число, принимающее "
"значение B<preorder>, B<postorder> или B<endorder> в зависимости от того, в "
"первый, второй или третий раз посещается внутренний узел, или значение "
"I<leaf>, если это единственный просмотр узла-листа. Эти символы определены в "
"I<E<lt>search.hE<gt>>. Третий аргумент — это глубина текущего погружения в "
"дерево; для корня она равна нулю."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"(More commonly, B<preorder>, B<postorder>, and B<endorder> are known as "
"B<preorder>, B<inorder>, and B<postorder>: before visiting the children, "
"after the first and before the second, and after visiting the children. "
"Thus, the choice of name B<post\\%order> is rather confusing.)"
msgstr ""
"(В общем случае, функции B<preorder>, B<postorder> и B<endorder> известны "
"как B<preorder>, B<inorder> и B<postorder>: перед посещением потомков, после "
"первого посещения и перед вторым и после посещения. Таким образом, выбор "
"имени B<post\\%order> приводит к путанице.)"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<twalk_r>() is similar to B<twalk>(), but instead of the I<depth> "
"argument, the I<closure> argument pointer is passed to each invocation of "
"the action callback, unchanged. This pointer can be used to pass "
"information to and from the callback function in a thread-safe fashion, "
"without resorting to global variables."
msgstr ""
"Функция B<twalk_r>() подобна B<twalk>(), но вместо аргумента I<depth> "
"передаётся неизменяемый аргумент-указатель I<closure> в каждый вызов функции "
"обратного вызова. Этот указатель можно использовать для передачи информации "
"в и из функции обратного вызова безопасным для нитей образом, не задействуя "
"глобальные переменные."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tdestroy>() removes the whole tree pointed to by I<root>, freeing all "
"resources allocated by the B<tsearch>() function. For the data in each "
"tree node the function I<free_node> is called. The pointer to the data is "
"passed as the argument to the function. If no such work is necessary, "
"I<free_node> must point to a function doing nothing."
msgstr ""
"Функция B<tdestroy>() удаляет всё дерево, на которое указывает I<rootp>, "
"высвобождая все ресурсы, выделенные функцией B<tsearch>(). Для данных "
"каждого узла дерева вызывается функция I<free_node>. Указатель на данные "
"передаётся в аргумент функции. Если делать ничего не нужно, то в "
"I<free_node> нужно указать функцию, которая ничего не делает."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "RETURN VALUE"
msgstr "ВОЗВРАЩАЕМОЕ ЗНАЧЕНИЕ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tsearch>() returns a pointer to a matching node in the tree, or to the "
"newly added node, or NULL if there was insufficient memory to add the item. "
"B<tfind>() returns a pointer to the node, or NULL if no match is found. If "
"there are multiple items that match the key, the item whose node is returned "
"is unspecified."
msgstr ""
"Функция B<tsearch>() возвращает указатель на найденный узел дерева или "
"добавляет новый узел, а также возвращает NULL, если для добавления "
"недостаточно памяти. Функция B<tfind>() возвращает указатель на узел или "
"NULL, если совпадений не найдено. Если есть несколько элементов с одинаковым "
"ключом, то какой из них будет возвращён — не определено."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tdelete>() returns a pointer to the parent of the node deleted, or NULL "
"if the item was not found. If the deleted node was the root node, "
"B<tdelete>() returns a dangling pointer that must not be accessed."
msgstr ""
"Функция B<tdelete>() возвращает указатель на родителя удалённого узла или "
"NULL, если элемент не найден. Если удалённый узел был корневым узлом, то "
"B<tdelete>() возвращает повисшую ссылку, по которой нельзя обращаться."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tsearch>(), B<tfind>(), and B<tdelete>() also return NULL if I<rootp> was "
"NULL on entry."
msgstr ""
"Функции B<tsearch>(), B<tfind>() и B<tdelete>() также возвращают NULL, если "
"I<rootp> для записи был равен NULL."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ATTRIBUTES"
msgstr "АТРИБУТЫ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For an explanation of the terms used in this section, see B<attributes>(7)."
msgstr "Описание терминов данного раздела смотрите в B<attributes>(7)."
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Interface"
msgstr "Интерфейс"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Attribute"
msgstr "Атрибут"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Value"
msgstr "Значение"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".na\n"
msgstr ".na\n"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".nh\n"
msgstr ".nh\n"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid ""
#| "B<tsearch>(),\n"
#| "B<tfind>(),\n"
msgid ""
"B<tsearch>(),\n"
"B<tfind>(),\n"
"B<tdelete>()"
msgstr ""
"B<tsearch>(),\n"
"B<tfind>(),\n"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Thread safety"
msgstr "Безвредность в нитях"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "MT-Safe race:rootp"
msgstr "MT-Safe race:rootp"
#. #-#-#-#-# archlinux: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#. #-#-#-#-# debian-bookworm: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: tbl table
#. #-#-#-#-# debian-unstable: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#. #-#-#-#-# fedora-40: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#. #-#-#-#-# fedora-rawhide: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#. #-#-#-#-# mageia-cauldron: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#. #-#-#-#-# opensuse-leap-15-6: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#. #-#-#-#-# opensuse-tumbleweed: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TQ
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<twalk>()"
msgstr "B<twalk>()"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "MT-Safe race:root"
msgstr "MT-Safe race:root"
#. #-#-#-#-# archlinux: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# debian-bookworm: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: tbl table
#. #-#-#-#-# debian-unstable: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# fedora-40: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# fedora-rawhide: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# mageia-cauldron: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# opensuse-leap-15-6: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# opensuse-tumbleweed: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<twalk_r>()"
msgstr "B<twalk_r>()"
#. #-#-#-#-# archlinux: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# debian-bookworm: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: tbl table
#. #-#-#-#-# debian-unstable: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# fedora-40: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# fedora-rawhide: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# mageia-cauldron: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# opensuse-leap-15-6: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#. #-#-#-#-# opensuse-tumbleweed: tsearch.3.pot (PACKAGE VERSION) #-#-#-#-#
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<tdestroy>()"
msgstr "B<tdestroy>()"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "MT-Safe"
msgstr "MT-Safe"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "STANDARDS"
msgstr "СТАНДАРТЫ"
#. type: TP
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "I<search>"
msgid "B<tsearch>()"
msgstr "I<поиск>"
#. type: TQ
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy, no-wrap
#| msgid "B<bind>(2)"
msgid "B<tfind>()"
msgstr "B<bind>(2)"
#. type: TQ
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<tdelete>()"
msgstr "B<tdelete>()"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "POSIX.1-2008."
msgstr "POSIX.1-2008."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "GNU."
msgstr "GNU."
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "HISTORY"
msgstr "ИСТОРИЯ"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "POSIX.1-2001, POSIX.1-2008, SVr4."
msgstr "POSIX.1-2001, POSIX.1-2008, SVr4."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, fuzzy
#| msgid "Since glibc 2.20:"
msgid "glibc 2.30."
msgstr "Начиная с glibc 2.20:"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NOTES"
msgstr "ЗАМЕЧАНИЯ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<twalk>() takes a pointer to the root, while the other functions take a "
"pointer to a variable which points to the root."
msgstr ""
"Функции B<twalk>() передаётся указатель на корень, а остальные функции "
"ожидают указатель на переменную, которая указывает на корень."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"B<tdelete>() frees the memory required for the node in the tree. The user "
"is responsible for freeing the memory for the corresponding data."
msgstr ""
"Функция B<tdelete>() освобождает память, которая необходима для хранения "
"элемента в дереве. Пользователь отвечает за освобождение памяти, "
"использованной для хранения соответствующих данных."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The example program depends on the fact that B<twalk>() makes no further "
"reference to a node after calling the user function with argument "
"\"endorder\" or \"leaf\". This works with the GNU library implementation, "
"but is not in the System V documentation."
msgstr ""
"Программа в примере зависит от того, что B<twalk>() больше не ссылается на "
"узел после вызова пользовательской функции с аргументом «endorder» или "
"«leaf». Это работает с реализацией библиотеки GNU, но этого нет в "
"документации System V."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "EXAMPLES"
msgstr "ПРИМЕРЫ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"The following program inserts twelve random numbers into a binary tree, "
"where duplicate numbers are collapsed, then prints the numbers in order."
msgstr ""
"Приведённая ниже программа вставляет двенадцать случайных чисел в двоичное "
"дерево, в котором повторяющиеся числа удаляются, а затем печатает их по "
"порядку."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ""
"#define _GNU_SOURCE /* Expose declaration of tdestroy() */\n"
"#include E<lt>search.hE<gt>\n"
"#include E<lt>stddef.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>time.hE<gt>\n"
"\\&\n"
"static void *root = NULL;\n"
"\\&\n"
"static void *\n"
"xmalloc(size_t n)\n"
"{\n"
" void *p;\n"
"\\&\n"
" p = malloc(n);\n"
" if (p)\n"
" return p;\n"
" fprintf(stderr, \"insufficient memory\\en\");\n"
" exit(EXIT_FAILURE);\n"
"}\n"
"\\&\n"
"static int\n"
"compare(const void *pa, const void *pb)\n"
"{\n"
" if (*(int *) pa E<lt> *(int *) pb)\n"
" return -1;\n"
" if (*(int *) pa E<gt> *(int *) pb)\n"
" return 1;\n"
" return 0;\n"
"}\n"
"\\&\n"
"static void\n"
"action(const void *nodep, VISIT which, int depth)\n"
"{\n"
" int *datap;\n"
"\\&\n"
" switch (which) {\n"
" case preorder:\n"
" break;\n"
" case postorder:\n"
" datap = *(int **) nodep;\n"
" printf(\"%6d\\en\", *datap);\n"
" break;\n"
" case endorder:\n"
" break;\n"
" case leaf:\n"
" datap = *(int **) nodep;\n"
" printf(\"%6d\\en\", *datap);\n"
" break;\n"
" }\n"
"}\n"
"\\&\n"
"int\n"
"main(void)\n"
"{\n"
" int *ptr;\n"
" int **val;\n"
"\\&\n"
" srand(time(NULL));\n"
" for (unsigned int i = 0; i E<lt> 12; i++) {\n"
" ptr = xmalloc(sizeof(*ptr));\n"
" *ptr = rand() & 0xff;\n"
" val = tsearch(ptr, &root, compare);\n"
" if (val == NULL)\n"
" exit(EXIT_FAILURE);\n"
" if (*val != ptr)\n"
" free(ptr);\n"
" }\n"
" twalk(root, action);\n"
" tdestroy(root, free);\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
#. SRC END
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr "СМ. ТАКЖЕ"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<bsearch>(3), B<hsearch>(3), B<lsearch>(3), B<qsort>(3)"
msgstr "B<bsearch>(3), B<hsearch>(3), B<lsearch>(3), B<qsort>(3)"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "2023-01-26"
msgstr "26 января 2023 г."
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "Linux man-pages 6.03"
msgstr "Linux man-pages 6.03"
#. type: SH
#: debian-bookworm
#, no-wrap
msgid "VERSIONS"
msgstr "ВЕРСИИ"
#. type: Plain text
#: debian-bookworm
#, fuzzy
#| msgid "B<twalk_r>() is available in glibc since version 2.30."
msgid "B<twalk_r>() is available since glibc 2.30."
msgstr "Функция B<twalk_r>() доступна в glibc начиная с версии 2.30."
#. type: Plain text
#: debian-bookworm
msgid ""
"POSIX.1-2001, POSIX.1-2008, SVr4. The functions B<tdestroy>() and "
"B<twalk_r>() are GNU extensions."
msgstr ""
"POSIX.1-2001, POSIX.1-2008, SVr4. Функции B<tdestroy>() и B<twalk_r>() "
"являются расширениями GNU."
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, fuzzy, no-wrap
#| msgid ""
#| "#define _GNU_SOURCE /* Expose declaration of tdestroy() */\n"
#| "#include E<lt>search.hE<gt>\n"
#| "#include E<lt>stdlib.hE<gt>\n"
#| "#include E<lt>stdio.hE<gt>\n"
#| "#include E<lt>time.hE<gt>\n"
msgid ""
"#define _GNU_SOURCE /* Expose declaration of tdestroy() */\n"
"#include E<lt>search.hE<gt>\n"
"#include E<lt>stddef.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>time.hE<gt>\n"
msgstr ""
"#define _GNU_SOURCE /* для объявления tdestroy() */\n"
"#include E<lt>search.hE<gt>\n"
"#include E<lt>stdlib.hE<gt>\n"
"#include E<lt>stdio.hE<gt>\n"
"#include E<lt>time.hE<gt>\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid "static void *root = NULL;\n"
msgstr "static void *root = NULL;\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"static void *\n"
"xmalloc(size_t n)\n"
"{\n"
" void *p;\n"
msgstr ""
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, fuzzy, no-wrap
#| msgid ""
#| "static void *\n"
#| "xmalloc(unsigned n)\n"
#| "{\n"
#| " void *p;\n"
#| " p = malloc(n);\n"
#| " if (p)\n"
#| " return p;\n"
#| " fprintf(stderr, \"insufficient memory\\en\");\n"
#| " exit(EXIT_FAILURE);\n"
#| "}\n"
msgid ""
" p = malloc(n);\n"
" if (p)\n"
" return p;\n"
" fprintf(stderr, \"insufficient memory\\en\");\n"
" exit(EXIT_FAILURE);\n"
"}\n"
msgstr ""
"static void *\n"
"xmalloc(unsigned n)\n"
"{\n"
" void *p;\n"
" p = malloc(n);\n"
" if (p)\n"
" return p;\n"
" fprintf(stderr, \"недостаточно памяти\\en\");\n"
" exit(EXIT_FAILURE);\n"
"}\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"static int\n"
"compare(const void *pa, const void *pb)\n"
"{\n"
" if (*(int *) pa E<lt> *(int *) pb)\n"
" return -1;\n"
" if (*(int *) pa E<gt> *(int *) pb)\n"
" return 1;\n"
" return 0;\n"
"}\n"
msgstr ""
"static int\n"
"compare(const void *pa, const void *pb)\n"
"{\n"
" if (*(int *) pa E<lt> *(int *) pb)\n"
" return -1;\n"
" if (*(int *) pa E<gt> *(int *) pb)\n"
" return 1;\n"
" return 0;\n"
"}\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
"static void\n"
"action(const void *nodep, VISIT which, int depth)\n"
"{\n"
" int *datap;\n"
msgstr ""
"static void\n"
"action(const void *nodep, VISIT which, int depth)\n"
"{\n"
" int *datap;\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, no-wrap
msgid ""
" switch (which) {\n"
" case preorder:\n"
" break;\n"
" case postorder:\n"
" datap = *(int **) nodep;\n"
" printf(\"%6d\\en\", *datap);\n"
" break;\n"
" case endorder:\n"
" break;\n"
" case leaf:\n"
" datap = *(int **) nodep;\n"
" printf(\"%6d\\en\", *datap);\n"
" break;\n"
" }\n"
"}\n"
msgstr ""
" switch (which) {\n"
" case preorder:\n"
" break;\n"
" case postorder:\n"
" datap = *(int **) nodep;\n"
" printf(\"%6d\\en\", *datap);\n"
" break;\n"
" case endorder:\n"
" break;\n"
" case leaf:\n"
" datap = *(int **) nodep;\n"
" printf(\"%6d\\en\", *datap);\n"
" break;\n"
" }\n"
"}\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, fuzzy, no-wrap
#| msgid ""
#| "int\n"
#| "main(void)\n"
#| "{\n"
#| " int i, *ptr;\n"
#| " void *val;\n"
msgid ""
"int\n"
"main(void)\n"
"{\n"
" int *ptr;\n"
" int **val;\n"
msgstr ""
"int\n"
"main(void)\n"
"{\n"
" int i, *ptr;\n"
" void *val;\n"
#. type: Plain text
#: debian-bookworm opensuse-leap-15-6
#, fuzzy, no-wrap
#| msgid ""
#| " srand(time(NULL));\n"
#| " for (i = 0; i E<lt> 12; i++) {\n"
#| " ptr = xmalloc(sizeof(int));\n"
#| " *ptr = rand() & 0xff;\n"
#| " val = tsearch((void *) ptr, &root, compare);\n"
#| " if (val == NULL)\n"
#| " exit(EXIT_FAILURE);\n"
#| " else if ((*(int **) val) != ptr)\n"
#| " free(ptr);\n"
#| " }\n"
#| " twalk(root, action);\n"
#| " tdestroy(root, free);\n"
#| " exit(EXIT_SUCCESS);\n"
#| "}\n"
msgid ""
" srand(time(NULL));\n"
" for (unsigned int i = 0; i E<lt> 12; i++) {\n"
" ptr = xmalloc(sizeof(*ptr));\n"
" *ptr = rand() & 0xff;\n"
" val = tsearch(ptr, &root, compare);\n"
" if (val == NULL)\n"
" exit(EXIT_FAILURE);\n"
" if (*val != ptr)\n"
" free(ptr);\n"
" }\n"
" twalk(root, action);\n"
" tdestroy(root, free);\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
msgstr ""
" srand(time(NULL));\n"
" for (i = 0; i E<lt> 12; i++) {\n"
" ptr = xmalloc(sizeof(int));\n"
" *ptr = rand() & 0xff;\n"
" val = tsearch((void *) ptr, &root, compare);\n"
" if (val == NULL)\n"
" exit(EXIT_FAILURE);\n"
" else if ((*(int **) val) != ptr)\n"
" free(ptr);\n"
" }\n"
" twalk(root, action);\n"
" tdestroy(root, free);\n"
" exit(EXIT_SUCCESS);\n"
"}\n"
#. type: TH
#: debian-unstable opensuse-tumbleweed
#, no-wrap
msgid "2023-07-20"
msgstr "20 июля 2023 г."
#. type: TH
#: debian-unstable opensuse-tumbleweed
#, no-wrap
msgid "Linux man-pages 6.05.01"
msgstr "Linux man-pages 6.05.01"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "2023-03-30"
msgstr "30 марта 2023 г."
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Linux man-pages 6.04"
|