当前位置:   article > 正文

记一次阿里巴巴面试的经历_阿里面试成功的暗示

阿里面试成功的暗示

       今天我下班的时候接到了昨晚阿里巴巴面试我的技术面试官的电话,他问我昨晚的编程题是提交了全部的代码吗,我那时候正在地铁刚下班也有点迷糊,而且我想着昨晚的题也基本完成了90%应该没问题,于是我就说了:”应该是的“,然后说了一些昨晚没全部完成的理由。后面我们的通话就结束了,但是当我挂了以后我就十分后悔,我感觉这很有可能是面试官给我的最后一个机会,我想回拨回去,可是奈何这是虚拟电话,根本没有用。于是回到家中我十分懊恼,也用了一会就把昨晚的题完全做出来了,可是当我打开邮箱的时候却收到这样一封邮件:

瞬间,我觉得这可能是我离阿里最远但是又是最近的一次,最近是因为从8.11日我收到了阿里的简历内推成功进入面试的通知,我很兴奋而且我感觉前面回答面试官的技术问题都回答的不错的,编程题也基本做出来了,最远又是因为这个结果已经很明确了——FAILED!后面我实在忍不住哭了,向我女朋友倾诉了,其实我这么想进去大厂,很大的一个缘故也是因为想快点赚多点钱跟她买房子,娶她。

        写到这里,我心情稍微平复,我告诉自己我得振作,总结经验:这次我感觉主要就是我的心态问题。面对阿里这样的大厂我不应该抱着完成90%就可以的心态,90%就是相当于没完成,昨晚到今天时间这么长我就应该抽出时间100%完成,这样说不定还有机会进入下一步,今天我在这里记录这个经历就当给自己的一个激励,后面我必须继续提升自己,严谨的做事,最后奉上我完成的代码和刚刚输出的符合面试官的编程题要求的输出结果:

  1. package com.way.test;
  2. import java.io.*;
  3. import java.util.*;
  4. import java.util.stream.Collectors;
  5. /**
  6. * @author wayleung
  7. * @description
  8. * @date 2020-08-19 19:40:59
  9. */
  10. public class AliTest {
  11. public static void main(String[] args) throws IOException {
  12. File file = new File("/Users/wayleung/work/test.txt");
  13. List<Tree> list = parseFile(file);
  14. Tree tree = buildTree(list);
  15. // System.out.println(tree);
  16. System.out.println(isValid(tree, "北京市", "平谷区", null));
  17. System.out.println(isValid(tree, "北京市", "天河区", null));
  18. System.out.println(isValid(tree, "北京市", "天河区", "武强县"));
  19. System.out.println(isValid(tree, "河北省", "衡水市", "武强县"));
  20. System.out.println(isValid(tree, "河北省", "衡水市", "武强县1"));
  21. System.out.println(isValid(tree, null, null, null));
  22. // System.out.println();
  23. printTree(tree);
  24. }
  25. /**
  26. * 解析文件
  27. * @param file
  28. * @return
  29. * @throws IOException
  30. */
  31. public static List<Tree> parseFile(File file) throws IOException {
  32. List<Tree> result = new ArrayList<>();
  33. InputStreamReader read = new InputStreamReader(new FileInputStream(file),"UTF-8");
  34. BufferedReader br= new BufferedReader(read);
  35. String line = null;
  36. try {
  37. while((line = br.readLine()) != null){
  38. Tree tree = parseString(line);
  39. result.add(tree);
  40. }
  41. }finally {
  42. br.close();
  43. read.close();
  44. }
  45. return result;
  46. }
  47. /**
  48. * 解析每行字符串
  49. * @param str
  50. * @return
  51. */
  52. public static Tree parseString(String str){
  53. Tree tree = new Tree();
  54. String[] split = str.split("-");
  55. if(split.length>0){
  56. String parentStr = split[0];
  57. String[] parentStrArray = parentStr.split(":");
  58. if(parentStrArray.length>0){
  59. tree.setParent(Integer.valueOf(parentStrArray[0]));
  60. tree.setParentArea(parentStrArray[1]);
  61. }
  62. String childStr = split[1];
  63. String[] childStrArray = childStr.split(":");
  64. if(childStrArray.length>0){
  65. tree.setData(Integer.valueOf(childStrArray[0]));
  66. tree.setArea(childStrArray[1]);
  67. }
  68. return tree;
  69. }else{
  70. return null;
  71. }
  72. }
  73. /**
  74. * 构建树
  75. * @param trees
  76. * @return
  77. */
  78. public static Tree buildTree(List<Tree> trees) {
  79. /**
  80. * groupingby 二级code 获取一个已经groupby的 二级-三级关系的map
  81. */
  82. Map<Integer, List<Tree>> tempChildrenMap = sortMap(trees.stream().filter(tree -> tree.getParent() != 0).sorted(Comparator.comparing(Tree::getData)).collect(Collectors.groupingBy(tree -> tree.getParent())));
  83. //todo 可优化
  84. /**
  85. * 获取map key所有二级关系的code
  86. */
  87. Set<Integer> keys = tempChildrenMap.keySet();
  88. /**
  89. * key所有二级关系的code构建一级-二级关系 零级-一级关系的Tree 其实应该先构建了Tree的List再转map
  90. */
  91. List<Tree> allTrees = getSecondAndOne(keys,trees);
  92. /**
  93. * groupingby 二级code 获取一个已经groupby的 二级-三级关系的map 完整数据
  94. */
  95. Map<Integer, List<Tree>> childrenMap = sortMap(allTrees.stream().filter(tree -> tree.getParent() != 0).sorted(Comparator.comparing(Tree::getData)).collect(Collectors.groupingBy(tree -> tree.getParent())));
  96. /**
  97. * 遍历 把所有的节点的children都关联上 引用类型 自然会一一关联
  98. */
  99. allTrees.forEach(tree -> tree.setChildren(childrenMap.get(tree.getData())));
  100. /**
  101. * 最后获取根节点
  102. */
  103. return allTrees.stream().filter(tree -> tree.getParent() == 0).collect(Collectors.toList()).get(0);
  104. }
  105. private static Map sortMap(Map<Integer, List<Tree>> childrenMap) {
  106. return childrenMap.entrySet().stream()
  107. .sorted(Map.Entry.comparingByKey())
  108. .collect(
  109. Collectors.toMap(
  110. Map.Entry::getKey,
  111. Map.Entry::getValue,
  112. (oldVal, newVal) -> oldVal,
  113. LinkedHashMap::new
  114. )
  115. );
  116. }
  117. /**
  118. * key为二层节点 构建一二层节点
  119. */
  120. public static List<Tree> getSecondAndOne(Set<Integer> keys,List<Tree> trees){
  121. keys.forEach(key->{
  122. Tree tempTree = new Tree();
  123. tempTree.setParent(1);
  124. tempTree.setData(key);
  125. Tree tree = getTree(trees, key);
  126. tempTree.setArea(tree.getParentArea());
  127. trees.add(tempTree);
  128. });
  129. trees.add(new Tree(0,1,"中国",null,null));
  130. return trees;
  131. }
  132. /**
  133. * 根据data查找对应Tree
  134. * @param trees
  135. * @param data
  136. */
  137. public static Tree getTree(List<Tree> trees, Integer data){
  138. for(Tree tree:trees) {
  139. Integer dataTemp = tree.getParent();
  140. if(dataTemp.equals(data)){
  141. return tree;
  142. }
  143. }
  144. return null;
  145. }
  146. /**
  147. * 构建树
  148. * @param trees
  149. * @return
  150. */
  151. public static Map<Integer, List<Tree>> buildTreeMap(List<Tree> trees) {
  152. return trees.stream().filter(tree -> tree.getParent() != 1).collect(Collectors.groupingBy(tree -> tree.getParent()));
  153. }
  154. /**
  155. * 是否有孩子节点
  156. */
  157. public static boolean isHasChild(Tree tree){
  158. if(tree.getChildren()!=null&&tree.getChildren().size()>0&&tree.getChildren().get(0).getData()!=null){
  159. return true;
  160. }
  161. return false;
  162. }
  163. /**
  164. * 集合是否为空
  165. * @param list
  166. * @return
  167. */
  168. public static boolean isEmpty(List list){
  169. if(list!=null&&list.size()>0){
  170. return true;
  171. }
  172. return false;
  173. }
  174. /**
  175. * 判断地址是否合法
  176. * @param lv1
  177. * @param lv2
  178. * @param lv3
  179. * @return
  180. */
  181. public static boolean isValid(Tree tree,String lv1,String lv2,String lv3){
  182. if(!isHasChild(tree)){
  183. return false;
  184. }else{
  185. if(lv1!=null&&!lv1.equals("")){
  186. List<Tree> children = tree.getChildren();
  187. Tree tree1 = ifHasData(children, lv1);
  188. if(tree1!=null){
  189. if(lv2!=null&&!lv2.equals("")){
  190. Tree tree2 = ifHasData(tree1.getChildren(), lv2);
  191. if(tree2!=null){
  192. if(lv3!=null&&!lv3.equals("")){
  193. Tree tree3 = ifHasData(tree2.getChildren(), lv3);
  194. if(tree3!=null){
  195. return true;
  196. }else{
  197. return false;
  198. }
  199. }else{
  200. return true;
  201. }
  202. }else{
  203. return false;
  204. }
  205. }else{
  206. return true;
  207. }
  208. }else{
  209. return false;
  210. }
  211. }else{
  212. return false;
  213. }
  214. }
  215. }
  216. /**
  217. * 寻找是否有该节点 有的话返回
  218. * @param trees
  219. * @param area
  220. * @return
  221. */
  222. public static Tree ifHasData(List<Tree> trees,String area){
  223. for(Tree tree:trees){
  224. if(tree.getArea().equals(area)){
  225. return tree;
  226. }
  227. }
  228. return null;
  229. }
  230. static int lv = 0;
  231. public static void printTree(Tree tree){
  232. if(tree!=null){
  233. System.out.println(printBlank(lv)+"-" + tree.getData() + ":" + tree.getArea());
  234. }
  235. if(isHasChild(tree)){
  236. lv++;
  237. for (int i = 0; i < tree.getChildren().size(); i++) {
  238. printTree(tree.getChildren().get(i));
  239. }
  240. lv--;
  241. }
  242. }
  243. public static String printBlank(int n){
  244. String blank = "";
  245. for (int i = 0; i < n; i++) {
  246. blank = blank+" ";
  247. }
  248. return blank;
  249. }
  250. }
  251. /**
  252. * 地区树实体
  253. */
  254. class Tree{
  255. private Integer parent;
  256. private Integer data;
  257. private String area;
  258. private String parentArea;
  259. private List<Tree> children;
  260. public String getParentArea() {
  261. return parentArea;
  262. }
  263. public void setParentArea(String parentArea) {
  264. this.parentArea = parentArea;
  265. }
  266. public String getArea() {
  267. return area;
  268. }
  269. public void setArea(String area) {
  270. this.area = area;
  271. }
  272. public Tree() {
  273. }
  274. public Tree(Integer parent, Integer data, List<Tree> children) {
  275. this.parent = parent;
  276. this.data = data;
  277. this.children = children;
  278. }
  279. public Tree(Integer parent, Integer data,String area,String parentArea, List<Tree> children) {
  280. this.parent = parent;
  281. this.parentArea = parentArea;
  282. this.data = data;
  283. this.children = children;
  284. this.area = area;
  285. }
  286. public Integer getData() {
  287. return data;
  288. }
  289. public void setData(Integer data) {
  290. this.data = data;
  291. }
  292. public Integer getParent() {
  293. return parent;
  294. }
  295. public void setParent(Integer parent) {
  296. this.parent = parent;
  297. }
  298. public List<Tree> getChildren() {
  299. return children;
  300. }
  301. public void setChildren(List<Tree> children) {
  302. this.children = children;
  303. }
  304. @Override
  305. public String toString() {
  306. // return "-"+data+":"+area+children;
  307. // return "\n-"+data+":"+area+children;
  308. String result = "-"+data+":"+area;
  309. if(children!=null){
  310. result = result + "\n "+children.toString();
  311. }
  312. return result;
  313. }
  314. }

 

 

 

 
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/814903
推荐阅读
相关标签
  

闽ICP备14008679号