IT公司100题-1

 1 // 题目:
 2 // 输入一棵二元查找树,将该二元查找树转换成一个排序的双向链表。
 3 // 要求不能创建任何新的结点,只调整指针的指向。
 4
 5 //    10
 6 //    / /
 7 //   6  14
 8 // / / / /
 9 // 4  8 12 16
10
11 // 转换成双向链表
12 // 4=6=8=10=12=14=16。
13
14 #include <iostream>
15 using namespace std;
16
17 class Node{
18   public:
19     int data;
20     Node *left;
21     Node *right;
22
23     Node(int d = 0, Node *lr = 0, Node *rr = 0):data(d), left(lr), right(rr){}
24 };
25
26 Node *create()
27 {
28   Node *root;
29   Node *p4 = new Node(4);
30   Node *p8 = new Node(8);
31   Node *p6 = new Node(6, p4, p8);
32
33   Node *p12 = new Node(12);
34   Node *p16 = new Node(16);
35   Node *p14 = new Node(14, p12, p16);
36
37   Node *p10 = new Node(10, p6, p14);
38   root = p10;
39
40   return root;
41 }
42
43 Node *change(Node *p, bool asRight)
44 {
45   if (!p)
46     return NULL;
47   Node *pLeft = change(p->left, false);
48   if (pLeft)
49     pLeft->right = p;
50   p->left = pLeft;
51
52   Node *pRight = change(p->right, true);
53   if (pRight)
54     pRight->left = p;
55   p->right = pRight;
56
57   Node *r = p;
58   if (asRight)
59   {
60     while (r->left)
61       r = r->left;
62   }else{
63     while (r->right)
64       r = r->right;
65   }
66   return r;
67 }
68
69 int main(){
70   Node *root = create();
71   Node *tail = change(root, false);
72   while (tail)
73   {
74     cout << tail->data << " ";
75     tail = tail->left;
76   }
77   cout << endl;
78
79   root = create();
80   Node *head = change(root, true);
81   while (head)
82   {
83     cout << head->data << " ";
84     head = head->right;
85   }
86   cout << endl;
87   return 1;
88 }
时间: 2024-11-08 20:37:57

IT公司100题-1的相关文章

IT公司100题-15-求二元查找树的镜像

问题描述: 输入一颗二元查找树,将该树转换为它的镜像树,即对每一个节点,互换左右子树. 例如输入: 6/    \4     12/ \   /   \2  5 8   16 输出: 6/     \12     4/   \   / \16  8 5  2 定义二元查找树的结点为: typedef struct BSTree { int data; BSTree* left; BSTree* right; } Node; 分析: 方法1:递归交换左右子树. // 15_1.cc #includ

IT公司100题-14-排序数组中和为给定值的两个数字

问题描述: 输入一个升序排序的数组,给定一个目标值target,求数组的两个数a和b,a+b=target.如果有多个组合满足这个条件,输出任意一对即可. 例如,输入升序数组[1, 3, 4, 5, 13, 17]和目标值20.输出3和17. 分析: 最简单的办法,直接遍历,时间复杂度为O(n^2). 双下标法:low和high a[low]+a[high] < target, low++; a[low]+a[high] > target, high–; a[low]+a[high] == t

IT公司100题-12-求1+2+…+n

问题描述: 求1+2+…+n,要求不能使用乘除法.for.while.if.else.switch.case等关键字以及条件判断语句(A?B:C). 分析: 利用类的静态变量实现: new一含有n个这种类的数组,那么该类的构造函数将会被调用n次. 代码实现: 1 // 12.cc 2 #include <iostream> 3 using namespace std; 4 5 class Object { 6 public: 7 Object() { 8 ++N; 9 Sum += N; 10

IT公司100题-13-求链表中倒数第k个结点

问题描述: 输入一个单向链表,输出该链表中倒数第k个结点.链表倒数第0个节点为NULL. struct list_node { int data; list_node* next; }; 分析: 方法1: 首先计算出链表中节点的个数n,然后倒数第k个节点,为正数n-k+1个节点. 需要遍历链表2次. 方法1代码实现: 1 // 13_1.cc 2 #include <iostream> 3 using namespace std; 4 5 struct list_node { 6 int da

IT公司100题-11-求二叉树中节点的最大距离

问题描述: 写程序,求一棵二叉树中相距最远的两个节点之间的距离. 10/     \6      14/   \   /   \4    8 12    16 分析: 二叉树中最远的两个节点,要么是根和一个叶子节点,要么是两个叶子节点. 代码实现: 1 // 11.cc 2 #include <iostream> 3 using namespace std; 4 5 typedef struct BSTreeNode { 6 int data; 7 BSTreeNode *left; 8 BS

IT公司100题-3

题目:输入一个整形数组,数组里有正数也有负数.数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和.求所有子数组的和的最大值.要求时间复杂度为O(n). 例如输入的数组为1, -2, 3, 10, -4, 7, 2, -5,和最大的子数组为3, 10, -4, 7, 2,因此输出为该子数组的和18. 分析:本题最初为2005年浙江大学计算机系的考研题的最后一道程序设计题,在2006年里包括google在内的很多知名公司都把本题当作面试题.由于本题在网络中广为流传,本题也顺利成为2006

IT公司100题-2

1 // 定义栈的数据结构,要求添加一个min 函数,能够得到栈的最小元素. 2 // 要求函数min.push 以及pop 的时间复杂度都是O(1). 3 #include <iostream> 4 #include "../data/own/c2_list.h" 5 using namespace std; 6 7 template <typename object> 8 class miniStack{ 9 public: 10 bool isEmpty(

IT公司100题-9-判断整数序列是不是二元查找树的后序遍历结果

问题描述: 输入一个整数数组,判断该数组是不是某二元查找树的后序遍历的结果. 如果是返回true,否则返回false. 例如输入4, 8, 6, 12, 16, 14, 10,由于这一整数序列是如下树的后序遍历结果: 10/     \6      14/  \    /   \4   8 12    16 因此返回true. 如果输入6, 5, 8, 5, 7 ,则返回false. 分析: 在后续遍历得到的序列中,最后一个元素为树的根结点.根节点元素将数组分为两部分,左边都小于根节点,右边都大

IT公司100题-25-求字符串中的最长数字串

问题描述: 实现一个函数,求出字符串中的连续最长数字串.例如输入”12345cbf3456″,输出”12345″. 函数原型为: void conti_num_max( const char * src, char * dest); dest保存最长数字串,返回void. 分析: 遍历一遍字符串,记录起始位置和长度即可. 代码实现: 1 // 25.cc 2 #include <iostream> 3 #include <cstring> 4 using namespace std

IT公司100题-26-左旋转字符串

问题描述: 给定字符串和左旋的字符数,写程序实现字符串的左旋操作.例如对于字符串”12345678″, 左旋转4个字符后,变成”56781234″.要求时间复杂度为O(n),空间复杂度O(1). 分析: 假设字符串表示为XY,X表示需要左旋的部分,左旋后字符串表示为YX. 根据公式: 代码实现: 1 // 26.cc 2 #include <iostream> 3 #include <string> 4 #include <cstring> 5 using namesp