Interview Cake学习心得总结
文章平均质量分 87
主要记录从https://www.interviewcake.com网站,学习到的一些关于面试的知识及技巧
summer_sunrise
知行合一
展开
-
数组和字符串操作(一):读物
数组和字符串操作:读物数组数据结构的一种;又称静态数组。简要介绍数组内部的元素在内存中存储是有序的,一个接一个。数组的每一个元素都有一个索引,从0开始。优势快速索引:无论数组的长度如何,检索给定索引处的元素都需要时间。快速添加:在数组的末尾添加元素劣势固定大小:存储数组前,需要先定义好数组的大小 (除非你使用的是动态数组)。费时的插入和删除:你必须“越过”其他元素来填补或...原创 2019-02-17 21:21:36 · 264 阅读 · 0 评论 -
Logarithms-对数
What logarithm even means(对数意味着什么)“What power must we raise this base to, in order to get this answer?”for \log_{10}{100}it means: “What power do we need to raise this base (10) to, to get this ans...原创 2018-12-03 21:21:06 · 411 阅读 · 0 评论 -
Big O Notation
概述主要总结面试蛋糕中用来表达算法复杂读的O的相关知识和心得。网页地址:https://www.interviewcake.com/article/python/big-o-notation-time-and-space-complexity?section=algorithmic-thinking&course=fc1基础知识目的The Big O notation is t...原创 2018-10-14 16:19:03 · 1999 阅读 · 0 评论 -
Data Structure
Data Structure原创 2018-10-15 19:22:00 · 1638 阅读 · 0 评论