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行,宽 ...
随机推荐
- c# mvc使用 npoi下载 excel
IWorkbook book = new NPOI.HSSF.UserModel.HSSFWorkbook(); //添加一个sheet ISheet sheet1 = book.CreateShee ...
- ANT build.xml文件详解
Ant的优点 跨平台性.Ant是用Java语言编写的,所示具有很好的跨平台性. 操作简单.Ant是由一个内置任务和可选任务组成的. Ant运行时需要一个XML文件(构建文件). Ant通过调用targ ...
- CircleImageView
package com.cainiao5.cainiaoheadimg; import android.content.Context;import android.content.res.Typed ...
- python3读取chrome浏览器cookies
好几年前我在做一些自动化的脚本时,脑子里也闪过这样的想法:能不能直接把浏览器的cookies取出来用呢? 直到昨天看到代码<python模拟发送动弹>,想起来当年我也曾经有类似的想法没能完 ...
- Python print格式化输出
python中的print格式化输出,基本格式:"[字符串]%格式1[字符串]%格式2[字符串]....."%(string1,string2.....) 格式符号 ------- ...
- SecureCRT清屏
Ctrl + l:清屏Ctrl + c:终止命令Ctrl + z:挂起命令
- Roman to Integer -- LeetCode 13
Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 t ...
- 详解Objective-C runtime
感谢翻译小组成员wingpan热心翻译.本篇文章是我们每周推荐优秀国外的技术类文章的其中一篇.如果您有不错的原创或译文,欢迎提交给我们,更欢迎其他朋友加入我们的翻译小组(联系qq:2408167315 ...
- 去掉EditPlus自动备份bak文件
用EditPlus编辑文件是总是自动生成一个.bak文件. 其实想去掉EditPlus的自动备份也简单,方法如下: 打开菜单栏上的:工具->参数设置->文件 去掉“保存时创建备份文件”前的 ...
- Linux命令行与图形界面切换方法
1.实时切换 1.1 命令行->图形 startx 1.2 图形->命令行 Ctrl+Alt+F1--F6 2.启动默认 2.1 启动进入命令行 修改/etc/inittab文件 &quo ...