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行,宽 ...
随机推荐
- HDU 1561 树形DP入门
The more, The Better Time Limit: 6000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Oth ...
- Psp个人软件开发软件需求分析及用例分析
一.需求分析 1. 业务需求 1.1 应用背景 开发项目进度计划总是那么不明确,延期经常出现,甚至无法给出一个相对比较明确的延迟时间.这样给市场的推广会带来很大的影响,不确定因素使得应对十分困难. ...
- github删除带有文件的文件夹
1. git pull you git url2. git checkout 3. rm -rf dirName4. git add --all5. git commit -m"remove ...
- mysql alter 语句用法,添加、修改、删除字段等
2013-05-03 17:13 39459人阅读 评论(1) 收藏 举报 分类: Mysql(9) 修改表名: ALTER TABLE admin_user RENAME TO a_use / ...
- golang flag包简单例子
package main import ( "flag" "fmt" ) var workers int; func main() { flag.IntVar( ...
- 点击按钮回到页面顶部或者某个高度时的问题,JQUERY
$('#shang').click(function(){ $('html,body').animate({scrollTop: '0px'}, 800); }); 不能写成$(window).ani ...
- Bug严重级别分类
BUG等级划分,一般划分为:严重BUG.较严重BUG.一般性BUG.建议性BUG A类—严重错误,包括以下各种错误: 1. 由于程序所引起的死机,非法退出 2. 死循环 3. 数据库发生死锁 4. 因 ...
- cf340D Bubble Sort Graph
link:http://codeforces.com/problemset/problem/340/D 感觉很好的一道题目. 认真思考,发现,逆序的数字对一定有边相连.所以,题目要求没有边相连的最大的 ...
- 关于 Graph Convolutional Networks 资料收集
关于 Graph Convolutional Networks 资料收集 1. GRAPH CONVOLUTIONAL NETWORKS ------ THOMAS KIPF, 30 SEPTE ...
- git相关
进入到想要用git管理的project目录下 1.git init 意即该目录会被git监视一切的变动 同时生成一个.git文件夹下面存放了管理该project的一切必要信息 2.git add &l ...