time complexity analysis
The assignment I'm working on is below.
Of course, I don't want people to do the assignment for me (I've been working on it!), but I'm not sure what "time complexity" refers to in this case. Do I have to calculate how much time it takes for the 30 words to be processed?
If so, how?
Thanks.
Implementing a Dictionary with the Operations Insert, Delete, and Member The Dictionary should contains at least 30 keywords.
In your design, you should provide your data structures, time complexity analysis for operations, programs with comments, and test scripts (i.e., testing programs).

The time complexity refers
The time complexity refers to the time it takes for the algorithm to run. Since you have a specific number 30, the time complexity is constant because the most you would ever have to deal with is 30 things. Check out Big-O notation for more information on time complexities.