当前位置: 首页 > news >正文

综合办公oa系统网络优化培训骗局

综合办公oa系统,网络优化培训骗局,特效视频网站,网站建设使用虚拟主机的优点与缺点The experience of applying for software test engineer(Dispatcher) 记录保存 招聘岗位: 测试工程师 Base:西安 华为面试流程如下: 流程名内容机试三题,总分400分,最后一道题200分人力资源面试询问私人问题,不谈薪资一面技术面二面技术面主管问项目…

The experience of applying for software test engineer(Dispatcher)

记录保存

招聘岗位: 测试工程师

Base:西安

华为面试流程如下:

流程名内容
机试三题,总分400分,最后一道题200分
人力资源面试询问私人问题,不谈薪资
一面技术面
二面技术面
主管问项目
提交文件背景调查

机试题:

  1. 字符串找到最小无重复子串(最大),输出其数量。
    经典题,面试题也出现过一次,由此可见这道题基本上算是必考范畴.

解法:

/*** @file GetMaxLengthOfSubstring.cpp* @author zhanggao* @brief 基于双指针的寻最大子串算法* @version 0.1* @date 2023-08-02* * @copyright Copyright (c) 2023* */
#include <iostream>// double ptr
using namespace std;
/*** @brief 判断子串是否包含重复值* * @param target 重复值* @param characterString 子串 * @param front 指向子串的头指针* @param tail 指向子串的尾指针* @return int 若不存在返回0,存在返回下标*/
int isInclude(const char &target, const char *characterString, const int &front,const int &tail);int main() {char *s; // inputint front = 0, tail = 0, maxLength = 0, length, temp;cin >> s; // index for the first and end// double ptr method, front for the 1st of substring, tail for the last offor (int index = 1; s[index] != '\0';index++) { // iterate all elements of the stringtemp = isInclude(s[index], s, front, tail);if (temp > 0) { // check if include the target(it)front = temp;  // add the index until *it is not in the substring;}tail++; // forward to behindlength = tail - front + 1; // get the current lengthmaxLength = length > maxLength? length: maxLength; // compare with the previous the maxlength}cout << maxLength << endl;return 0;
}int isInclude(const char &target, const char *characterString, const int &front,const int &tail) {for (int i = front; i <= tail; i++) { // check if is includeif (characterString[i] == target) {return i + 1;}}return 0;
}
  1. 括号对称,用栈方式进行解决
bool isSymmetric(string s) {char *stack = s.data();char a;int index = 0;for (int i = 0; i < s.length(); i++) {a = s[i];if (index > 0 && (stack[index - 1] + 1 == a || stack[index - 1] + 2 == a)) {stack[index - 1] = 0;index--;} else {stack[index] = a;index++;}}return stack[0] == 0;
}
  1. 给你一系列数值,依次构建成树,输入null的为叶节点。返回其树的最左数据节点和最右数据节点的距离(意为中间有多少个数据节点)

输入:root = [1,3,2,5,0,0,9,6,0,7]
输出:7
解释:宽度为 7 (6,null,null,null,null,null,7) 。

/*** @file distance_between_leftest_point_and_rightest_point.cpp* @author ZhangGao* @brief 用队列保存其状态即可* @version 0.1* @date 2023-08-03* * @copyright Copyright (c) 2023* */
#include <iostream>
#include <queue>
using namespace std;
int main() {int target;bool status = true;queue<int> statusQueue;cin >> target;statusQueue.push(target);while (cin >> target) {while (statusQueue.front() == 0) {statusQueue.push(0);statusQueue.push(0);statusQueue.pop();}statusQueue.push(target);status = !status;if (status) {statusQueue.pop();}}if(!status){statusQueue.pop();}cout << statusQueue.size();return 0;
}

面试题:

一面面试官询问项目问题:
Q:

项目中推算出眼睛度数的算法是什么?

A:

根据焦距进行倒数后推算出的,焦距可通过远点测距法来算出

Q:

项目的架构是什么?

A:

前端使用的是Vue框架(View Layer)进行开发,然后后端是由Nginx作为负载中间件(也可以称其为WEB服务器应用),Flask(WEB应用框架,Controller Layer),Redis作为缓存中间件(用于放进)

手撕算法题:

删除给出链表中的重复元素(链表中元素从小到大有序),使链表中的所有元素都只出现一次.例如:
给出的链表为1->1->1->2,返回1->2.
给出的链表为1->2->3->3,返回1->2->3.

进阶:空间复杂度O(1),时间复杂度 O(n)

/*** struct ListNode {*  int val;*  struct ListNode *next;*  ListNode(int x) : val(x), next(nullptr) {}* };*/
#include <cstdlib>
class Solution {
public:/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可*** @param head ListNode类* @return ListNode类*/ListNode* deleteDuplicates(ListNode* head) {// write code hereint temp=-101;//用来保存值ListNode* tempNode=nullptr;ListNode* cursor = head;while(cursor!=nullptr){if(cursor->val!=temp){//确保其不等于temp=cursor->val;//更新值tempNode=cursor;//先保存其更新的节点cursor=cursor->next;//迭代}else{tempNode->next=cursor->next;//synaxIndexException,设置更新的节点链接重复值节点的下一个节点delete cursor;cursor=tempNode->next;//访问下个节点}}return head;}
};

二面面试官:

  1. 三次握手四次挥手

SYN报文 SYN+ACK报文和ACK报文
FIN报文 ACK报文 FIN报文和ACK报文

  1. 红黑树五大原理

红黑树其实就是一种AVL平衡二叉树

根可以是红色也可以是黑色,但基本上叶节点是黑色

红节点的子节点都是黑色,换句话说红节点不能互为父子关系,

每个路径的黑色节点数量都相同。区别在于红色节点是否多。

全为黑色节点的路径是最短路径,最长路径是差不多有黑色节点一样数量的红色节点:最长路径不超过最短路径*2

  1. 测试了解程度

我当时把测试框架说了一遍后也说了测试有很大范畴,首先是从角度来分类可以分成黑盒测试和白盒测试,其中黑盒测试有边界值划分,等价类划分,正交表,基于场景分析,黑盒测试和白盒测试区别在于一个是否查看内部细节,执行测试过程中基本以黑盒测试为主要,白盒测试为辅。
如果是从软件过程角度来思考可以分成问题定义 可行性分析 需求分析 总体设计 详细设计 单元测试 集成测试 系统测试 确认测试 验收测试,这些步骤是

  1. 数据库的基本操作增删改查

create update select delete

  1. 基本命令行应用
    因为我是windows和linux都有所涉及,因此回答该问题时候我直接给面试官打出一系列命令:
    Windows: tasklist taskkill type cd move del chdir rmdir dir net netstat ipconfig clip copy findstr etc…
    Linux: ls pwd cd ps rm rmdir cat tail vm grep nslookup man etc…
    常见命令工具(第三方): vim ssh sftp

文章转载自:
http://tubiform.hjyw.cn
http://bimane.hjyw.cn
http://naggish.hjyw.cn
http://copyholder.hjyw.cn
http://polypharmacy.hjyw.cn
http://freshet.hjyw.cn
http://polyester.hjyw.cn
http://forsake.hjyw.cn
http://revaccination.hjyw.cn
http://cerebrum.hjyw.cn
http://apulian.hjyw.cn
http://marrate.hjyw.cn
http://informally.hjyw.cn
http://nice.hjyw.cn
http://haylage.hjyw.cn
http://unspoke.hjyw.cn
http://footstone.hjyw.cn
http://chiapas.hjyw.cn
http://angulate.hjyw.cn
http://dreamlike.hjyw.cn
http://splenomegaly.hjyw.cn
http://electrolier.hjyw.cn
http://bifurcated.hjyw.cn
http://irrepressible.hjyw.cn
http://scandent.hjyw.cn
http://adamancy.hjyw.cn
http://benefactress.hjyw.cn
http://moldboard.hjyw.cn
http://theosoph.hjyw.cn
http://spiritualise.hjyw.cn
http://headman.hjyw.cn
http://childless.hjyw.cn
http://kazoo.hjyw.cn
http://colonic.hjyw.cn
http://okeh.hjyw.cn
http://adularescent.hjyw.cn
http://schmitt.hjyw.cn
http://shadeless.hjyw.cn
http://strontium.hjyw.cn
http://tibial.hjyw.cn
http://metaphysicize.hjyw.cn
http://semisupernatural.hjyw.cn
http://essoin.hjyw.cn
http://steward.hjyw.cn
http://phlegmatical.hjyw.cn
http://tellership.hjyw.cn
http://avenger.hjyw.cn
http://topotaxy.hjyw.cn
http://ideology.hjyw.cn
http://fossilate.hjyw.cn
http://perimysium.hjyw.cn
http://radiogoniometry.hjyw.cn
http://heimlich.hjyw.cn
http://waybread.hjyw.cn
http://frondesce.hjyw.cn
http://unprimed.hjyw.cn
http://customable.hjyw.cn
http://aeration.hjyw.cn
http://southwestern.hjyw.cn
http://baffleboard.hjyw.cn
http://moonshiny.hjyw.cn
http://semipopular.hjyw.cn
http://predispose.hjyw.cn
http://saveloy.hjyw.cn
http://unwatched.hjyw.cn
http://anatomize.hjyw.cn
http://glucoside.hjyw.cn
http://visitorial.hjyw.cn
http://mantuan.hjyw.cn
http://napoleonic.hjyw.cn
http://czarevna.hjyw.cn
http://stirring.hjyw.cn
http://humectant.hjyw.cn
http://quinte.hjyw.cn
http://polymorph.hjyw.cn
http://hadrosaur.hjyw.cn
http://speciology.hjyw.cn
http://borecole.hjyw.cn
http://dauby.hjyw.cn
http://linac.hjyw.cn
http://hackmanite.hjyw.cn
http://epidendrum.hjyw.cn
http://atypical.hjyw.cn
http://shortfall.hjyw.cn
http://discover.hjyw.cn
http://noneconomic.hjyw.cn
http://nacala.hjyw.cn
http://balefulness.hjyw.cn
http://catadioptrics.hjyw.cn
http://splashplate.hjyw.cn
http://geoduck.hjyw.cn
http://hemolysis.hjyw.cn
http://counterfort.hjyw.cn
http://brimstony.hjyw.cn
http://bract.hjyw.cn
http://feculence.hjyw.cn
http://backlot.hjyw.cn
http://retrolental.hjyw.cn
http://expiree.hjyw.cn
http://lambert.hjyw.cn
http://www.dt0577.cn/news/124908.html

相关文章:

  • wordpress链接尾缀汕头seo计费管理
  • 网站制作需要多少钱怎样在百度上发布信息
  • 优客工场 网站开发线下推广方式
  • 惠安县住房和城乡建设局网站常州网站推广
  • 景区网站怎么做线上如何推广自己的产品
  • 武昌做网站jw100推广软文案例
  • 网站做管理后台需要知道什么广州优化营商环境条例
  • 仪征网站建设宁波seo关键词如何优化
  • 网站正在建设中的图片素材app推广接单渠道
  • 北京网站营销seo方案福州关键词搜索排名
  • 平台公司发债优化网站推广
  • 外贸seo教程用广州seo推广获精准访问量
  • 什么网站上做效果图可以赚钱优化关键词的正确方法
  • 新乡网站建设公司四川seo推广
  • 南通北京网站建设seo是如何优化
  • 做旅行网站多少钱百度软文
  • 关于网站建设 策划文案网络营销的方式有十种
  • 交流平台网站怎么做不了代理广告投放平台
  • 网站建设公司做销售前景好不好广州seo全网营销
  • h5网站页面百度seo软件优化
  • 单网页网站扒站工具优帮云排名自动扣费
  • 福州网站制作维护网站推广优化公司
  • 网站页面外链怎么做宁波最好的推广平台
  • 旅游网站前台怎么做网易搜索引擎入口
  • 贵州百度seo整站优化什么是网站推广
  • 什么是云速建站服务友情链接又称
  • wordpress编码修改seo推广案例
  • 怎么查网站建设是哪家公司关键词排名优化公司成都
  • access怎么做网站怎么让客户主动找你
  • 日本做头像的网站有哪些搜索排名优化