二叉树 STL 图 哈希 详解

Ubuntu Pastebin

Paste from QWbin at Wed, 26 Jul 2017 10:36:33 +0000

Download as text
  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
已知 前序和中序遍历 求后序遍历序列

struct node *creat(char *a, char *b, int n)
  {
   struct node *ptr;
   char *p;
   int count = 0;
   if (n <= 0)
     return NULL;
    ptr = (struct node *)malloc(sizeof(struct node));
    ptr -> data = *a;
    for (p = &b[0]; p <= b + n - 1;p ++)
    {
     if (*p == *a)
       break;
    }
    count = p - b;
    ptr -> l = creat(a + 1, b, count);
    ptr -> r = creat(a + 1 + count, p + 1, n - 1 - count);
   return ptr;
  }






已知中序和后序遍历 求前序遍历序列

struct node *creat(char *a, char *b, int n)
  {
   struct node *ptr;
   if (n <= 0)
     return NULL;
    ptr = (struct node *)malloc(sizeof(struct node));
    ptr -> data = b[n - 1];
   int q = strchr(a, b[n - 1]) - a;
   ptr -> l = creat(a, b, q);
   ptr -> r = creat(a + q + 1, b + q, n - q - 1);
   return ptr;
  }


-------------------------------------------------------------------------

//搜索函数//————递归

struct node *Find(int x, struct node *t)
    {
     if (t != NULL) 
     return NULL;         // 没有找到x
     if (x > t -> data)
       return Find(x, t -> right);  //右子树寻找
     else
        if (x < t -> data)
       return Find(x, t -> left);    //左子树寻找
     else
        if (x == t -> data)
           return t;       //找到 x






//搜索函数//——————迭代

struct node *Find(int x, struct node *t)
    {
     while(t)         
     {
     if (x > t -> data)
       t = t -> right;  //右子树寻找
     else
        if (x < t -> data)
       t = t -> left;    //左子树寻找
     else
        if (x == t -> data)
           return t;       //找到 x
           }
    return NULL;  // 没有找到x





//查找最小元素//——————递归

struct node *findmin(x, struct node *t)
 {
   if (t == NULL) return NULL;
   else
      if (t -> left == NULL) 
      return t;
    else
       return findmin(x, t -> left);

 }





//查找最小元素//——————迭代

struct node *findmin(x, struct node *t)
 {
   if (t != BULL)
      {
        while(t -> left != NULL)
          t = t -> left;
      }
    return t;
 }





//查找最大元素//————递归

struct node *findmax(x, struct node *t)
 {
   if (t == NULL) return NULL;
   else
      if (t -> right == NULL) 
      return t;
    else
       return findmin(x, t -> right);

 }





//查找最大元素//————迭代

struct node *findmin(x, struct node *t)
 {
   if (t != BULL)
      {
        while(t -> right != NULL)
          t = t -> right;
      }
    return t;
 }






//插入函数//

struct node *Insert (int x, struct node *t)
  {
    if (t == NULL)   //进行插入操作//
    {
      t = (struct node *)malloc(sizeof(struct node));
      t -> data = x;
      t -> left = NULL;
      t -> right = NULL;
    }
    else
      if (x < t -> data)
        t -> left = Insert(x, t -> left);
        else
          if (x > t -> data)
            t -> right = Insert(x, t -> right);
  return t;
  }







-------------------------------------------------------------------------


陆续的题目以及部分没有写的内容将会在近期补上,初学者请多指教~~直接进入正题吧

STL主要分为:①非修改操作 ②非修改操作;

主要的头文件有:

#include<algorithm> // 算法头文件
#include<functional>
#include<vector>
#include<queue>
#include<set>
#include<map>


一、非修改操作: 
//find() 寻找x出现的位置 
//count() 寻找出现次数 
eg:

int main()
 {
    int i;
    int a[5] = {1, 3 , 2 , 1 , 3};
    //非修改操作
    //find()  寻找
    //count()  寻找出现次数
    int ans = find(a, a + n, 3) - a;
    // 访问范围[0, n), 寻找5  返回地址 , 得到下标, 复杂度 O(n);
    int cnt = count(a, a + n, 3);  // 访问范围【0, n) 寻找3出现的次数;
    printf("%d\n", ans);
    printf("%d\n", cnt);
    return 0;
    }





二、修改操作 
//swap() 交换两个相同类型的变量 
//reverse() 反转数组 
//unique() 数组去重 
//fill()* 以指定值填充数组 
//copy()* 拷贝数组 
eg:

    int A = 5, B = -5;
    int a[5] = {1, 3 , 2 , 1 , 3};
    swap(A, B);   //交换A  B
    reverse(a, a + 5); //反转
    for (i = 0;i <= 4;i ++)
     {
        printf("%d ",a[i]);
     }
     printf("\n");
     int newlen = unique(a, a + 5) - a; //去重
     for (i = 0;i <= newlen - 1;i ++)
      {
        printf("%d ",a[i]);
     }
     printf("\n");
    printf("%d %d\n", A, B);





排序 
//sort() 排序 
//stable_sort* 稳定排序 ————保证输出顺序与输入顺序相同————添加functional头文件 
eg:

 int newa[5] = {1, 3, 2, 1, 3};
    sort(newa, newa + n);
    for (i = 0;i <= 4;i ++)
     {
        printf("%d ",newa[i]);
     }
     printf("\n");
      stable_sort(newa, newa + n, greater<int>()); //int为数据类型 greater为排序要求
      for (i = 0;i <= 4;i ++)
     {
        printf("%d ",newa[i]);
     }
     printf("\n");




//二分查找 __先排序————一定要排序!!! 
//binary_search() 寻找是否出现———— bool型 复杂度log(n); 
//lower_bound() 返回第一个小于等于K的值 
//upper_bound() 返回第一个大于等于K的值

     sort(a, a + 5);
     printf("%ld\n",upper_bound(a, a + 5, 2) - a);
     printf("%ld\n",lower_bound(a, a + 5, 2) - a);




//集合操作 * 
//merge() 合并 
//set_union()* 求并集

———————————————————————————

//堆 
// make_heap() 
// push_heap() 
// pop_heap() 
// sort_heap()

——————————————————————————— 
//最值操作 
//min() max() 
//min_element() 数组中的最小值 复杂度O(n) 
//max_element() 数组中的最大值 复杂度O(n);

推荐题目: 模拟EXCEL排序 + 堆中的路径

—————————————————————————— 
《VECTOR》 
//vector __动态数组 末尾插入 
//头文件vector 
// 不定长数组,随加随用 
// 适合不断想尾部追加元素 
// push_back() 向尾部追加元素 
// pop_back() 从尾部删除元素 
// front() 返回第一个元素 
// back() 返回最后一个元素 
// insert() 插入元素 
// erase() 删除元素 + 删除元素的下标 
// clear() 清空vector

      vector<int>x;
      x.push_back(1); //插入
      x.push_back(2);
      x.push_back(3);
      for (i = 0;i < x.size();i ++)   //x.size()为长度
     {
        printf("%d ",x[i]);
     }
     printf("\n");

     x.pop_back();
      for (i = 0;i < x.size();i ++)   //x.size()为长度
     {
        printf("%d ",x[i]);
     }
     printf("\n");

     x.insert(x.begin() + 1, 5); //在a[1]的位置插入K

     for (i = 0;i < x.size();i ++)   //x.size()为长度
     {
        printf("%d ",x[i]);
     }
     printf("\n");

     x.erase(x.begin() + 1);  //删除a[1]
     for (i = 0;i < x.size();i ++)   //x.size()为长度
     {
        printf("%d ",x[i]);
     }




推荐题目: 说反话 + 打印学生选课清单

———————————————————————————

/stack __栈 
// 灵活方便 
// push(); 入栈 
// pop(); 将顶栈元素弹出 
// top(); 返回栈顶 
// empty(); 判断是否为空 
// size(); 返回栈元素数量

——————————————————————————— 
// //queue 队列 ———— queue 
// push(); 入栈 
// pop(); 将顶栈元素弹出 
// top(); 返回栈顶 
// empty(); 判断是否为空 
// size(); 返回队列元素数量 
// front(); 返回对首元素

// priority_queue 优先队列 ———— queue ————默认 大到小排序 
// push(); 入栈 
// pop(); 将顶栈元素弹出 
// top(); 返回栈顶 
// empty(); 判断是否为空 
// size(); 返回队列元素数量

priority_queue<int, vector<int>, greater<int> >q; //从小到大排序
     q.push(3);
     q.push(1);
     q.push(5);
     while(!q.empty())
        {
           printf("%d\n", q.top());
           q.pop();
        }
     printf("\n");
     printf("\n");

    priority_queue<int>p; //从大到小排序
     p.push(3);
     p.push(1);
     p.push(5);
     while(!p.empty())
        {
           printf("%d\n", p.top());
           p.pop();
        }




—————————————————————————— 
//set ———— 集合 
// 传统意义上的集合 
// 元素不重复(自动去重) 
// insert() 插入元素到集合 
// erase() 从集合删除元素 
// count() 返回元素是否存在 
// size() 返回集合元素个数 
// clear() 清空

set<int>s;
    s.insert(1);
    s.insert(2);
    s.insert(3);
    s.insert(2);
    set<int>::iterator it;

    for (it = s.begin(); it != s.end(); ++ it)  //遍历
     {
        printf("%d ", *it);
     }



推荐题目 : 集合相似度 + 列车调度

—————————————————————————— 
// map ———— 映射 ———— 哈希 ??字符串 ?? 
// 按照<键,值>的形式映射 
// 直接按照数组的形式操作 
// a[“abc”] 哈希 
// b[123456789] 大数组 
// insert()插入键值对 
// count()判断键是否存在 
// erase()删除键 
// clear()清空map

map<string, int>mpl;
   mpl["abc"] = 1;
   mpl["abb"] = 2;
   printf("%d\n", mpl["aaa"]); //不存在的 都为0
   printf("\n");
   printf("\n");
   printf("\n");

   map<long long , int>mp2;
   mp2[1234567890] = 3;
   printf("%d\n",mp2[1234567890]);


推荐题目 :树种的统计 + 航空公司VIP客户查询;
-------------------------------------------------------






Problem Description 
已知一个按先序序列输入的字符序列,如abc,,de,g,,f,,,(其中逗号表示空节点)。请建立二叉树并按中序和后序方式遍历二叉树,最后求出叶子节点个数和二叉树深度。

Input 
输入一个长度小于50个字符的字符串。 
Output 
输出共有7行: 
第1行输出前序遍历序列; 
第2行输出中序遍历序列; 
第3行输出后序遍历序列; 
第4行输出层序遍历序列; 
第5行输出叶子节点个数; 
第6行输出叶子节点(从上到下,从左到右); 
第7行输出二叉树深度。

Example Input

abc,,de,g,,f,,,

Example Output

abcdegf 
cbegdfa 
cgefdba 
abcdefg 
3 
cfg 
5

建树

struct node *creat(struct node *t)
   {
     char c;
     c = str[i ++];
     if (c == ',')
       t = NULL;
     else
     {
     t = (struct node *)malloc(sizeof(struct node));
     t -> data = c;
     t -> l = creat(t -> l);
     t -> r = creat(t -> r);
     }
     return t;
   }






前序遍历

void qianxu(struct node *t)
   {
     if (t != NULL)
       {
         printf("%c", t -> data);
         qianxu(t -> l);
         qianxu(t -> r);
       }
}





中序遍历

   void zhonxu(struct node *t)
    {
      if (t != NULL)
      {
      zhonxu(t -> l);
      printf("%c",t -> data);
      zhonxu(t -> r);
      }
    }





后序遍历

 void houxu(struct node *t)
    {
     if (t != NULL)
     {
     houxu(t -> l);
     houxu(t -> r);
     printf("%c",t -> data);
     }
}






层序遍历

void cengxu(struct node *t)
 {
  int in = 0, out = 0;
  struct node *a[1050];
  a[in ++] = t;
  while(in > out)
  {
    if (a[out] != NULL)
     {
       printf("%c",a[out] -> data);
       a[in ++] = a[out] -> l;
       a[in ++] = a[out] -> r;
     }
     out ++;
  }
 }




叶子个数

void num(struct node *t)
 {
  if (t != NULL)
   {
    if (t -> l == NULL && t -> r == NULL)
      count ++;
    else
      {
        num(t -> l);
        num(t -> r);
      }
   }
 }






叶子节点(从上到下,从左到右) 
由层序遍历修改而得

void cengxunum(struct node *t)
  {
    int in = 0;
    int out = 0;
    struct node *p[1050];
    p[in ++] = t;
    while(in > out)
    {
      if (p[out] != NULL)
      {
        if (p[out] -> l == NULL &&p[out] -> r == NULL)
           {
             printf("%c",p[out] -> data);
           }
        else
          {
            p[in ++] = p[out] -> l;
            p[in ++] = p[out] -> r;
          }
      }
      out ++;
    }
  }






二叉树深度

int depth(struct node *t)
   {
   int d1, d2;
   if (t != NULL)
   {
   d1 = depth(t -> l);
   d2 = depth(t -> r);
   if (d1 > d2)
     return d1 + 1;
    else
    return d2 + 1;
    }
    return 0;
   }





最终代码:

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
 struct node
 {
   char data;
   struct node *l, *r;
 }tree;

 struct node *creat(struct node *t);
 void qianxu(struct node *t);
 void zhonxu(struct node *t);
 void houxu(struct node *t);
 void cengxu(struct node *t);
 void num(struct node *t);
 void cengxunum(struct node *t);
 int depth(struct node *t);
 char str[1050];
 int i;
 int count = 0;


 int main()
 {
    while(scanf("%s",str)!=EOF)
    {
    i = 0;
    struct node *tree = NULL;
    tree = creat(tree);
    qianxu(tree);
    printf("\n");
    zhonxu(tree);
    printf("\n");
    houxu(tree);
    printf("\n");
    cengxu(tree);
    printf("\n");
    num(tree);
    printf("%d\n",count);
    cengxunum(tree);
    printf("\n");
    int de;
    de = depth(tree);
    printf("%d\n",de);
    }
    return 0;
 }

  struct node *creat(struct node *t)
   {
     char c;
     c = str[i ++];
     if (c == ',')
       t = NULL;
     else
     {
     t = (struct node *)malloc(sizeof(struct node));
     t -> data = c;
     t -> l = creat(t -> l);
     t -> r = creat(t -> r);
     }
     return t;
   }

   void zhonxu(struct node *t)
    {
      if (t != NULL)
      {
      zhonxu(t -> l);
      printf("%c",t -> data);
      zhonxu(t -> r);
      }
    }

    void houxu(struct node *t)
    {
     if (t != NULL)
     {
     houxu(t -> l);
     houxu(t -> r);
     printf("%c",t -> data);
     }
}


void qianxu(struct node *t)
   {
     if (t != NULL)
       {
         printf("%c", t -> data);
         qianxu(t -> l);
         qianxu(t -> r);
       }
}


void cengxu(struct node *t)
 {
  int in = 0, out = 0;
  struct node *a[1050];
  a[in ++] = t;
  while(in > out)
  {
    if (a[out] != NULL)
     {
       printf("%c",a[out] -> data);
       a[in ++] = a[out] -> l;
       a[in ++] = a[out] -> r;
     }
     out ++;
  }
 }

 void num(struct node *t)
 {
  if (t != NULL)
   {
    if (t -> l == NULL && t -> r == NULL)
      count ++;
    else
      {
        num(t -> l);
        num(t -> r);
      }
   }
 }

 void cengxunum(struct node *t)
  {
    int in = 0;
    int out = 0;
    struct node *p[1050];
    p[in ++] = t;
    while(in > out)
    {
      if (p[out] != NULL)
      {
        if (p[out] -> l == NULL &&p[out] -> r == NULL)
           {
             printf("%c",p[out] -> data);
           }
        else
          {
            p[in ++] = p[out] -> l;
            p[in ++] = p[out] -> r;
          }
      }
      out ++;
    }
  }

  int depth(struct node *t)
   {
   int d1, d2;
   if (t != NULL)
   {
   d1 = depth(t -> l);
   d2 = depth(t -> r);
   if (d1 > d2)
     return d1 + 1;
    else
    return d2 + 1;
    }
    return 0;
   }
Download as text
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Meikesibondwell

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值