Skip to content
Go back

初次笔试题

 at  Updated: 8 min read
Edit

昨天参加了学校的一个企业实习的宣讲会,结束后做了笔试题。签到时我选择的应聘岗位是后端开发,但是在选择笔试试卷是选择了 C/C++ 开发。和编程相关的题目总共是 4 道题。现场做题的时候有很多的细节没有考虑到,而且我更习惯使用电脑写代码,没有多少在纸上写代码的经历,最后只写了 3 道,一道空白。就个人感觉,这些笔试题中有一道题并不适合笔试。最后,最重要的是很基础的题目我并没有能够做到 bug-free。编程的基础还需要继续巩固。特记录如下。

题目记录如下:

C 语言 strcat 的实现

和库函数 strcat 并不相同,声明如下:

char* strcat(const char* a, const char* b)

大致的思路是先计算出 a 和 b 的长度,然后根据 a 和 b 的长度计算出需要分配给返回字符串的内存空间的大小,最后将 a 和 b 的内容依次拷贝到返回字符串中。

代码:

#include <stdio.h>
#include <stdlib.h>

char* strcat_m(const char* a, const char* b)
{
    int aLen = 0;
    for (; a[aLen] != '\0'; ++aLen) {
        ; 
    }
    int bLen = 0;
    for (; b[bLen] != '\0'; ++bLen) {
        ;
    }
    int len = aLen + bLen;
    char* str = malloc(sizeof(char) * (len+1));
    char* p = str;
    for (int i = 0; i < aLen; ++i) {
        *p = a[i];
        ++p;
    }
    for (int i = 0; i < bLen; ++i) {
        *p = b[i];
        ++p;
    }
    *p = '\0';
    return str;
}

int main(void)
{
    char a[10] = "123";
    char b[10] = "456";
    char *str = strcat_m(a, b);
    printf("%s\n", str);
    free(str);

    return 0;
}

链表逆序

这个是对链表操作的基础的考察。

代码:

#include <stdio.h>
#include <stdlib.h>

struct node {
    char ch; 
    struct node* next;
};

typedef struct node Node;

typedef struct {
    Node* head;
} LinkedList;

Node* helper(Node* p)
{
    if (p != NULL) {
        Node* n = p->next;
        n = helper(n);
        if (n != NULL) {
            n->next = p;
        }
    }
    return p;
}

void reverse(LinkedList* li)
{
    Node* head = li->head;
    Node* h = head;
    if (h != NULL) {
        while (h->next != NULL) {
            h = h->next;
        }
        Node* last = helper(head);
        last->next = NULL;
    }
    li->head = h;
}

void printLinkedList(LinkedList* li)
{
    Node* p = li->head;
    while (p != NULL) {
        printf("%c", p->ch);
        p = p->next;
    }
    printf("\n");
}

int main(void)
{
    LinkedList* li;
    li->head = malloc(sizeof(Node));
    li->head->ch = 'a';
    li->head->next = NULL;

    Node* p = li->head;
    for (int i = 1; i <= 3; i++) {
        Node* t = malloc(sizeof(Node));
        t->ch = 'a' + i;
        t->next = NULL;
        p->next = t;
        p = p->next;
    }
    printLinkedList(li);
    reverse(li);
    printLinkedList(li);
     
    return 0;
}

在上述代码写完之后,我想到的是如果可以使用栈的话,只要先将所有节点压入栈,在弹出节点指针的过程中,先将第一个出栈的节点记录为头节点,之后依次链接,最后一个节点链接 NULL,这样程序的逻辑就会更加简单,缺点就是引入了额外的数据结构。

当然,上述的递归代码也是隐式地使用了函数调用栈。

如果使用三个指针的话,就可以不使用栈完成链表逆序。

代码:

void reverse(LinkedList* li)
{
    Node* prev = NULL, *cur = li->head, *next = NULL;
    if (cur != NULL) {
        next = cur->next;
    }
    while (next != NULL) {
        cur->next = prev;
        prev = cur;
        cur = next;
        next = next->next;
    }
    cur->next = prev;
    li->head = cur;
}

快速排序

这道题就是我觉得不应该出现在面试题中的题目。快排的话,会和不会都是在笔试之前就已经确定了的,并且并不太能体现处应试者的编程(算法)水平。毕竟,没有多少人会没事写个快排。

虽说如此,还是写了。

代码:

#include <algorithm>
#include <iostream>
#include <vector>

using namespace std;

int partition(vector<int> &vec, int beg, int end)
{
    int p = beg;
    ++beg;
    while (beg <= end) {
        while (vec[beg] <= vec[p] && beg <= end) {
            ++beg;
        }
        while (vec[end] >= vec[p] && end >= beg) {
            --end;
        }
        if (beg >= end) break;
        swap(vec[beg], vec[end]);
    }
    swap(vec[p], vec[end]);
    return end;
}

void helper(vector<int> &vec, int beg, int end)
{
    if (beg >= end) return;
    int p = partition(vec, beg, end);
    helper(vec, beg, p-1);
    helper(vec, p+1, end);
}

void quicksort(vector<int> &vec)
{
    helper(vec, 0, vec.size()-1);
}

void printVec(vector<int> &vec)
{
    for (const auto &v : vec) {
        cout << v << " ";
    }
    cout << endl;
}

int main(void)
{
    vector<int> vec = {4, 2, 1, 5, 6, 0, 9, 7, 8 ,3};
    printVec(vec);
    quicksort(vec);
    printVec(vec);
    
    return 0;
}

基本的步骤就是三步:

  1. 切分
  2. 递归排序前半部分
  3. 递归排序后半部分

最后,需要注意递归终止的条件。

这三步中最重要的就是切分这一步。

要求打印出汉诺塔的移动序列

最初接触到这道题是我大二开始学习计算机算法最初接触递归的时候。再次碰到的时候只考虑到了移动次数,内心觉得移动序列可能比较麻烦,就没再考虑。笔试时也没有多加思考就放弃了。

在回宿舍的路上大致想明白了思路:

  1. 递归打印 N-1
  2. 打印 N
  3. 递归打印 N-1

没有考虑到的是需要将 A B C 三个柱子看作三个区域,目标是将整个汉诺塔依照要求从 A 移动到 C。这就需要考虑每一步移动时将 A B C 分别看作是 源(from)缓冲区(buffer)目的(to)。这部分参考 wiki

思路:

  1. 递归将 N-1fromto 为缓冲区移动到 buffer
  2. Nfrom 移动到 to
  3. 递归将 N-1bufferfrom 为缓冲区移动到 to

关键代码:

helper(N-1, from, to, buffer);
printf("Move disk %d from %c to %c\n", N, from, to);
helper(N-1, buffer, from, to);

完整代码:

#include <stdio.h>

void helper(int N, char from, char buffer, char to)
{
    if (N <= 0) return;

    helper(N-1, from, to, buffer);
    printf("Move disk %d from %c to %c\n", N, from, to);
    helper(N-1, buffer, from, to);
}

void print_hannoi(int N)
{
    helper(N, 'A', 'B', 'C');
}

int main(void)
{
    print_hannoi(1);
    printf("\n");
    print_hannoi(2);
    printf("\n");
    print_hannoi(3);
    printf("\n");

    return 0;
}

总结

第一次笔试没经验。我的基础能力也还是不足。离开电脑写代码,水平就开始极速下降了。

这家公司的 C/C++ 工程师的 4 道笔试题中有三道是需要用到递归实现的……


Edit
文章标题:初次笔试题
文章链接: https://blog.guanglai.me/posts/interview-first-time/

商业转载请联系站长获得授权,非商业转载请注明本文出处及文章链接。您可以自由地在任何媒体以任何形式复制和分发作品,也可以修改和创作,但分发衍生作品时必须采用相同的许可协议。

本文采用 CC BY-NC-SA 4.0 进行许可。


Previous Post
IEEE 浮点数表示
Next Post
LaTeX Beamer 使用