《剑指Offer》-Exercise(C语言)


面试题4:二维数组中的查找

/*
 测试数据:
 查找7:
 4
 1 2 8 9
 2 4 9 12
 4 7 10 13
 6 8 11 15
 1
 
 -----
 
 查找14:
 4
 1 2 8 9
 2 4 9 12
 4 7 10 13
 6 8 11 15
 0
 */

#include <stdio.h>

//注意:二维数组用做函数形参
int searchIna(int a[][4],int s,int n) {
    int i = 0,j = n-1;
    while (a[i][j] > s) {
        while (a[i][j]>s) {
            j--;
        }
        while (a[i][j]<s) {
            i++;
        }
        if (a[i][j] == s) {
            return 1;
        }
    }
    return 0;
}

int main(int argc, const char * argv[]) {
    int n = 0;
    scanf("%d",&n);
    int a[n][n];
    for (int i = 0; i<n; i++) {
        for (int j = 0; j<n; j++) {
            scanf("%d",&a[i][j]);
        }
    }
//    for (int i = 0; i<n; i++) {
//        for (int j = 0; j<n; j++) {
//            printf("%d ",a[i][j]);
//        }
//        printf("\n");
//    }
    printf("%d\n",searchIna(a, 14, 4));
    return 0;
}


面试题6:从尾到头打印链表

  • 单链表从尾到头打印(用栈或递归)

单链表结构

//从尾到头打印链表(递归)
void printfList(LinkedList L) {
    L = L->next;//跳过头节点
    if (NULL == L->next) {
        printf("%d ",L->data);
        return;
    }
    printfList(L);
    printf("%d ",L->data);
}

面试题7:重建二叉树

  • 根据先序遍历序列和中序遍历序列,重建二叉树

二叉树结构

//根据先序遍历序列和中序遍历序列重建二叉树
BiTree Construct(int *ptree,int *itree,int length)
{
    if(ptree==NULL || itree==NULL || length<=0)
        return NULL;
    return ConstructCode(ptree,ptree+length-1,itree,itree+length-1);
}

/****************************************************************
 *args:
 *   ptree_start:先序遍历开始位置指针
 *   ptree_end:先序遍历结束位置指针
 *   itree_start:中序遍历开始位置指针
 *   itree_end:中序遍历结束位置指针
 ****************************************************************/
BiTree ConstructCode(int *ptree_start,int *ptree_end,int *itree_start,int *itree_end)
{
    BiTree root_node;
    root_node=(BiTree)malloc(sizeof(BiTNode));
    root_node->data=ptree_start[0];                          /*根节点*/
    root_node->lChild=NULL;
    root_node->rChild=NULL;
    
    if(ptree_start==ptree_end)                              /*该节点是子树最后一个节点*/
    {
        if(itree_start==itree_end && *ptree_start==*ptree_end)
        {
            return root_node;
        }else
        {
            printf("ConstructCode is error!\n");
            exit(1);
        }
    }
    int *tmp_itree=itree_start;
    int left_length=0;
    while((*itree_start!=root_node->data) && (itree_start<itree_end))/*在中序遍历中寻找跟节点的指针*/
    {
        itree_start++;
    }
    left_length=itree_start-tmp_itree;                      /*根节点在中序遍历中的位置,用于求在先序遍历中右子树的开始位置*/
    if(left_length>0)                                        /*左子树递归*/
    {
        root_node->lChild=ConstructCode(ptree_start+1,ptree_start+left_length,tmp_itree,itree_start-1);
    }
    if(left_length<(ptree_end-ptree_start))                  /*右子树递归,pend-pstart>left_length说明遍历序列比左子树长,右子树有节点*/
    {
        root_node->rChild=ConstructCode(ptree_start+left_length+1,ptree_end,itree_start+1,itree_end);
    }
    return root_node;
}

面试题8:二叉树的(中序遍历序列)下一个节点

非标准答案,改中序遍历,添加标记打印。

二叉树结构

//中序遍历 找出节点的下一个节点
void MiddleOrderBiTreeFindNextData(BiTNode *T,int s,int flag)
{
    if (T == NULL)
    {
        return;
    }
    else
    {
        MiddleOrderBiTreeFindNextData(T->lChild,s,flag);
        if (flag == 1) {
            printf("%d ",T->data);
            return;
        }
        if (T->data == s) {
            flag = 1;
        }
        MiddleOrderBiTreeFindNextData(T->rChild,s,flag);
    }
}

面试题10:斐波那契数列

//递归,效率低,存在重复计算项
int fabonacci(int n) {
    if (n == 0) {
        return 0;
    } else if (n == 1) {
        return 1;
    } else {
        return fabonacci(n -1) + fabonacci(n - 2);
    }
}
//改进,用c记录前一项值。时间复杂度:O(n)
int fabonacci2(int n) {
    int resu[2] = {0,1};
    int a = 0, b = 1, c = 0;
    if (n < 2) {
        return resu[n];
    } else {
        for (int i = 2; i <= n; i++) { //要加上等于,因为斐波那契数列从第0项计算
            c = a + b;
            a = b;
            b = c;
        }
    }
    return c;
}

面试题11:旋转数组的最小数字

  • 时间复杂度:O(n)
//遍历一遍数组
int minInA1(int a[],int n) {
    int min = -999999;
    for (int i = 0; i < n; i++) {
        if (a[i] > a[i+1]) {
            min = a[i+1];
        }
    }
    return min;
}
  • 时间复杂度:O(logn) (未考虑特殊情况:1 1 1 0 1)
//改进(类似二分查找法,递归写法)
int minInA2(int a[],int low,int high) {
    int mid = (low + high)/2;
    if (low<high) {
        if (high - low == 1) {
            return a[mid+1];
        } else if (a[low] <= a[mid]) {
            return minInA2(a, mid, high);
        } else if (a[low] > a[mid]) {
            return minInA2(a, low, mid);
        }
    }
    return -1;
}
  • 把前两种综合起来,完整的算法
//考虑特殊情况:1 1 1 0 1
int minInA3(int a[],int low,int high) {
    int mid = (low + high)/2;
    if (a[mid] == a[low] && a[mid] == a[high]) {
        return minInA1(a, high+low+1);
    } else return minInA2(a, low, high);
}

面试题14:剪绳子

  • 动态规划
int maxProducyAfterCounting(int n) {
    if (n < 2) {
        return 0;
    } else if (n == 2) {
        return 1;
    } else if (n == 3) {
        return 2;
    } else {
        int product[n+1];
        product[0] = 0;
        product[1] = 1;
        product[2] = 2;
        product[3] = 3;
        int max;
        
        for (int i = 4; i<=n; i++) {
            max = 0;
            for (int j = 1; j<=i/2; j++) {
                int producter = product[j] * product[i - j];
                if (max<producter) {
                    max = producter;
                }
                product[i] = max;
            }
        }
        max = product[n];
        
        return max;
    }
}
  • 贪婪算法
int maxProducyAfterCounting2(int n) {
    if (n < 2) {
        return 0;
    } else if (n == 2) {
        return 1;
    } else if (n == 3) {
        return 2;
    } else {
        int timesOf3 = n/3;
        if (n - timesOf3 == 1) {
            timesOf3 = timesOf3 - 1;
        }
        
        int timesOf2 = (n - timesOf3 * 3)/2;
        return pow(3, timesOf3) * pow(2, timesOf2);
    }
}


and so on...

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容