本文介绍了将n个元素插入数组末尾的时间复杂度是多少?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道将一个元素插入数组需要一个恒定的时间让我们说c。
我尝试了什么: c + c + c + ....... n次= nc
i想问一下,这将是n或o的大O(1)
解决方案
i know that inserting an element to an array takes a constant time let us say c.
What I have tried:
for inserting n element time=
c+c+c+.......n times =nc
i want to ask that will it be big O of n or o(1)
解决方案
这篇关于将n个元素插入数组末尾的时间复杂度是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!