面试编程题
qq_34967667
这个作者很懒,什么都没留下…
展开
-
剑指Offer-面试题3 数组中重复的数字
//剑指Offer第三题//哈工大周兴//联系:qq960020310#include <iostream>using namespace std;/*//插入排序bool insertSort(int *a,int len){if (a==nullptr){return false;}for (int i=0;i<len;i++){for (i...原创 2018-02-09 21:03:58 · 221 阅读 · 0 评论 -
指针数组与数组指针
指针数组与数组指针详解1.什么是指针数组和数组指针?指针数组:指针数组可以说成是”指针的数组”,首先这个变量是一个数组,其次,”指针”修饰这个数组,意思是说这个数组的所有元素都是指针类型,在32位系统中,指针占四个字节。数组指针:数组指针可以说成是”数组的指针”,首先这个变量是一个指针,其次,”数组”修饰这个指针,意思是说这个指针存放着一个数组的首地址,或者说这个指针指向一个数组的首地址。 根据上...转载 2018-02-09 23:23:46 · 142 阅读 · 0 评论 -
剑指Offer 第四题
//剑指Offer第四题 二维数组中的查找//哈工大-周兴-qq960020310#include <iostream>using namespace std;bool findInt(int **a, int width, int height, int targrtNumber){ int colStart = 0; int rowStart = 0; in...原创 2018-02-09 23:24:22 · 326 阅读 · 0 评论 -
剑指Offer 第五题 替换空格
#include <iostream>using namespace std;void replaceBlack(char str[], int length){ if (str==nullptr || length<=0) { cout << "请输入正确的字符串!" << endl; return; } int origi...原创 2018-02-10 00:52:11 · 181 阅读 · 0 评论