
牛客笔试
是三水不是泗水
只是个笔记本
展开
-
创建静态链表(实现插入删除和查找)
#include<bits/stdc++.h> using namespace std; const int MAXSIZE=10000; struct node { int val; int id; int next; }staticlist[MAXSIZE]; void insert(int num,node nd,int start){//在链表的第num个节点后面插入n...原创 2019-11-17 21:48:29 · 463 阅读 · 0 评论 -
万万没想到之聪明的编辑
链接:https://www.nowcoder.com/questionTerminal/42852fd7045c442192fa89404ab42e92 来源:牛客网 时间限制:1秒 空间限制:32768K 算法知识视频讲解 我叫王大锤,是一家出版社的编辑。我负责校对投稿来的英文稿件,这份工作非常烦人,因为每天都要去修正无数的拼写错误。但是,优秀的人总能在平凡的工作中发现真理。我发现...原创 2019-11-04 12:57:34 · 149 阅读 · 0 评论