Chap6: question38 - 42
38. 数字 k 在有序数组中出现的次数
二分查找:找出第一个 k 和最后一个 k 。
#include <iostream>
using namespace std;
int getFirstOfK(int data[], int length, int k, int low, int high)
{
if(low <= high)
{
int mid = (low + high) / 2;
if(data[mid] == k && (mid == 0 || data[mid-1] != k))
return mid;
else if(data[mid] < k)
low = mid + 1;
else high = mid - 1;
return getFirstOfK(data, length, k, low, high);
}
return -1;
}
int getLastOfK(int data[], int length, int k, int low, int high)
{
if(low <= high)
{
int mid = (low + high) / 2;
if(data[mid] == k && (mid == length-1 || data[mid+1] != k))
return mid;
else if(data[mid] > k)
high = mid - 1;
else low = mid + 1;
return getLastOfK(data, length, k, low, high);
}
return -1;
}
int getNumberOfK(int data[], int length, int k)
{
int count = 0;
if(data != NULL && length > 0)
{
int first = getFirstOfK(data, length, k, 0, length-1);
if(first == -1) return -1; int last = getLastOfK(data, length, k, first, length-1);
count = last - first + 1;
}
return count;
}
int main()
{
int data[] = {1, 2, 3, 3, 3, 3, 4, 5};
cout << getNumberOfK(data, sizeof(data)/4, 3) << endl;
cout << getNumberOfK(data, sizeof(data)/4, 1) << endl;
cout << getNumberOfK(data, sizeof(data)/4, 2) << endl;
cout << getNumberOfK(data, sizeof(data)/4, 5) << endl; return 0;
}
39. 二叉树的深度 && 平衡二叉树的判断 && 二叉树结点的最大距离(题目来自编程之美,解法自创)
note:三种算法都必须是后序遍历。
#include <iostream>
#include <string>
using namespace std;
typedef struct BTNode
{
int v; // default positive Integer.
BTNode *pLeft;
BTNode *pRight;
BTNode(int x) : v(x), pLeft(NULL), pRight(NULL) {}
} BinaryTree;
/********************************************************/
/***** Basic functions ***********/
BinaryTree* createBinaryTree() // input a preOrder traversal sequence, 0 denote empty node.
{
BTNode *pRoot = NULL;
int r;
cin >> r;
if(r != 0) // equal to if(!r) return;
{
pRoot = new BTNode(r);
pRoot->pLeft = createBinaryTree();
pRoot->pRight = createBinaryTree(); }
return pRoot;
}
void release(BinaryTree *root){
if(root == NULL) return;
release(root->pLeft);
release(root->pRight);
delete[] root;
root = NULL;
}
void print(BinaryTree *root, int level = 1){
if(root == NULL) { cout << "NULL"; return; };
string s;
for(int i = 0; i < level; ++i) s += " ";
cout << root->v << endl << s;
print(root->pLeft, level+1);
cout << endl << s;
print(root->pRight, level+1);
}
/******************************************************************/
int getDepth(BinaryTree *root) // leaf Node is at depth 1
{
if(root == NULL) return 0;
int leftDepth = getDepth(root->pLeft);
int rightDepth = getDepth(root->pRight);
return 1 + (leftDepth > rightDepth ? leftDepth : rightDepth);
} bool isBalanced(BinaryTree *root, int *depth) // must be postOrder traversal
{
if(root == NULL) { *depth = 0; return true; };
int leftDepth, rightDepth;
if(isBalanced(root->pLeft, &leftDepth) && isBalanced(root->pRight, &rightDepth))
{
*depth = 1 + (leftDepth > rightDepth ? leftDepth : rightDepth);
if(leftDepth - rightDepth >= -1 && leftDepth - rightDepth <= 1)
return true;
else
return false;
}
}
bool isBalanced(BinaryTree *root)
{
int depth;
return isBalanced(root, &depth);
} int getMaxDistance(BinaryTree *root, int *maxDistance) // leaf node depth is set to 0
{
if(root == NULL) return -1;
int leftDepth = getMaxDistance(root->pLeft, maxDistance);
int rightDepth = getMaxDistance(root->pRight, maxDistance);
if(*maxDistance < 2 + leftDepth + rightDepth)
*maxDistance = 2 + leftDepth + rightDepth;
return 1 + (leftDepth > rightDepth ? leftDepth : rightDepth);
}
int getMaxDistance(BinaryTree *root)
{
int maxDistance = 0;
getMaxDistance(root, &maxDistance);
return maxDistance;
}
int main(){
int TestTime = 3, k = 1;
while(k <= TestTime)
{
cout << "Test " << k++ << ":" << endl; cout << "Create a tree: " << endl;
BinaryTree *pRoot = createBinaryTree();
print(pRoot);
cout << endl; cout << "The depth of binary tree: " << getDepth(pRoot) << endl; if(isBalanced(pRoot))
cout << "Does the tree is a balanced binary tree ? true" << endl;
else
cout << "Does the tree is a balanced binary tree ? false" << endl; cout << "The max distance between two nodes: " << getMaxDistance(pRoot) << endl; release(pRoot);
}
return 0;
}

40. 数组中只出现一次的数字
首先, 参考 Link: Single Number
其次,数组中有两个只出现一次的数字时: 例:{2,4,3,6,3,2,5,5}
#include <iostream>
using namespace std;
void findTwoNumbers(int data[], int length, int *num1, int *num2)
{
if(data == NULL || length < 2) return;
int total = 0;
for(int i = 0; i < length; ++i)
total ^= data[i];
int shift1 = 1;
for(int i = 0; i < sizeof(int)*8; ++i)
{
total >>= 1;
shift1 <<= 1;
if(total & 1)
break;
}
*num1 = *num2 = 0;
for(int i = 0; i < length; ++i)
{
if(data[i] & shift1) *num1 ^= data[i];
else *num2 ^= data[i];
}
}
int main(){
int num1, num2;
int test1[8] = { 2, 4, 3, 6, 3, 2, 5, 5};
findTwoNumbers(test1, 8, &num1, &num2);
cout << num1 << " "<< num2 << endl;
return 0;
}

41. 和为 S 的连续正数序列。
#include <iostream>
using namespace std;
void numsSumToS(int S)
{
int low = 1, high = 2;
while(low < high)
{
int curSum = 0;
for(int i = low; i <= high; ++i)
curSum += i;
if(curSum < S) ++high;
else if(curSum > S) ++low;
else
{
for(int i = low; i <= high; ++i)
cout << i << '\t';
cout << endl;
++high;
}
}
}
int main(){
int S;
while(true)
{
cout << "cin >> ";
cin >> S;
numsSumToS(S);
}
return 0;
}

42. 翻转单词顺序 && 字符串左旋转
note:左旋转 k 位相当于右旋转 N – k 位, N 为字符串长度。
Link: 7. Reverse Words in a String
Chap6: question38 - 42的更多相关文章
- (转)win7 64 安装mysql-python:_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory
原文地址:http://www.cnblogs.com/fnng/p/4115607.html 作者:虫师 今天想在在win7 64位环境下使用python 操作mysql 在安装MySQL-pyth ...
- Effective Modern C++ 42 Specific Ways to Improve Your Use of C++11 and C++14
Item 1: Understand template type deduction. Item 2: Understand auto type deduction. Item 3: Understa ...
- 把《c++ primer》读薄(4-2 c和c++的数组 和 指针初探)
督促读书,总结精华,提炼笔记,抛砖引玉,有不合适的地方,欢迎留言指正. 问题1.我们知道,将一个数组赋给另一个数组,就是将一个数组的元素逐个赋值给另一数组的对应元素,相应的,将一个vector 赋给另 ...
- PAT mooc DataStructure 4-2 SetCollection
数据结构习题集-4-2 集合的运用 1.题目: We have a network of computers and a list of bi-directional connections. Eac ...
- PHP开发程序应该注意的42个优化准则
PHP 独特的语法混合了 C.Java.Perl 以及 PHP 自创新的语法.它可以比 CGI或者Perl更快速的执行动态网页.用PHP做出的动态页面与其他的编程语言相比,PHP是将程序嵌入到HTML ...
- win7 64 安装mysql-python:_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or directory
今天想在在win7 64位环境下使用python 操作mysql 在安装MySQL-python 时报错: _mysql.c _mysql.c(42) : fatal error C1083: Can ...
- Atitit J2EE平台相关规范--39个 3.J2SE平台相关规范--42个
Atitit J2EE平台相关规范--39个 3.J2SE平台相关规范--42个 2.J2EE平台相关规范--39个5 XML Parsing Specification16 J2EE Conne ...
- 每天一个linux命令(42):kill命令
Linux中的kill命令用来终止指定的进程(terminate a process)的运行,是Linux下进程管理的常用命令.通常,终止一个前台进程可以使用Ctrl+C键,但是,对于一个后台进程就须 ...
- AC日记——画矩形 1.5 42
42:画矩形 总时间限制: 1000ms 内存限制: 65536kB 描述 根据参数,画出矩形. 输入 输入一行,包括四个参数:前两个参数为整数,依次代表矩形的高和宽(高不少于3行不多于10行,宽 ...
随机推荐
- eclipse快捷键用不了
ctrl+shift+R是eclipse最常用的快捷键之一,用于打开资源,输入文件名或文件名中的前几个字母,就可以打开工作区中任意文件 今天在打开eclipse,使用该快捷键时,提示“该快捷方式所指向 ...
- Adaboost 2
本文不定期更新.原创文章,转载请注明出处,谢谢. Adaboost是一种迭代算法,其核心思想是针对同一个训练集训练不同的分类器(弱分类器),然后把这些弱分类器集合起来,构成一个更强的最终分类器(强分类 ...
- 利用反射将Datatable、SqlDataReader转换成List模型
1. DataTable转IList public class DataTableToList<T>whereT :new() { ///<summary> ///利用反射将D ...
- Android请求网络权限
1,新建一个项目,在AndroidManiifest中添加 <uses-permission android:name="android.permission.INTERNET&quo ...
- 初学web开发——怎么解决无法找到路径的问题
刚刚接触web开发一个月,在接手项目时,总会出项无法找到改路径的问题, 那么,这个是什么原因造成的呢?因为我现在使用的是MVC架构,大部分的原因是在View里创建了视图,但是并未在controller ...
- PHP中常用的函数
1.php 字符串截取函数 2.php取得当前时间函数 3.php 字符串长度函数 4.几种php 删除数组元素方法 5.php中var_dump()函数的详解说明 6.PHP preg_match正 ...
- 利用pip8.1.2 安装django1.9.7
把python2升级到python3之后,利用pip安装django1.9.7时报错: DistributionNotFound: The 'pip==7.1.0' distribution was ...
- C++ Primer : 第十三章 : 拷贝控制示例
/* Message.h */ #ifndef _MESSAGE_H_ #define _MESSAGE_H_ #include <iostream> #include <strin ...
- EXTJS信息提示框的注意事项
1.申明html:弹出框不完整 申明xhtml 2.当非必须参数不需要设定,而后续需要设置参数时,可设置为null. Ext.onReady(){ function(){ Ext.Message.pr ...
- 图论--最近公共祖先问题(LCA)模板
最近公共祖先问题(LCA)是求一颗树上的某两点距离他们最近的公共祖先节点,由于树的特性,树上两点之间路径是唯一的,所以对于很多处理关于树的路径问题的时候为了得知树两点的间的路径,LCA是几乎最有效的解 ...