我是靠谱客的博主 酷炫钢笔,最近开发中收集的这篇文章主要介绍常见计算机用词《《《中英对照》》》以及对应缩写,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

还未整理,先放上来。

这几天复习数据结构的时候忽然看到一个BiTNode,大概能猜出是binary tree二叉树节点的意思。联想起了在上家公司,一众后端开发被产品经历嘲讽英语的状况,打算长期整理整理需要用的英语和常见缩写。对代码规范也很有帮助。

let's get acquainted with some of the most common data structures.
//链表
Linked_List: The formal definition is "a data structure consisting of a group of nodes which together represent a sequence." Like arrays, linked lists have indexes, but are accessed by iterators. In the linked list below, the head is "12", which is where the iterator always begins. Suppose we have a linked list object called "list", then list.head = 12 and list.head.next = 99. The last node is called the tail and is always "null" (nothing there).
//栈
stack:First come, first served
//队列
Queue:The Queue data structure provides first come, first served
//树
Tree:If you've ever looked at a genealogy table, or at the chain of command in a corporation, you've seen data arranged in a 

最后

以上就是酷炫钢笔为你收集整理的常见计算机用词《《《中英对照》》》以及对应缩写的全部内容,希望文章能够帮你解决常见计算机用词《《《中英对照》》》以及对应缩写所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部