Consider the following scenario: In a social media news feed, users are required to subscribe to the news feed before receiving any news or updates. Users can only subscribe to each news feed only up to five (5) different feeds.
Given your knowledge of linked structures and arrays, determine which of the two complex types you would use to implement the solution (1) for tracking the number of subscribers within a media company and (2) for tracking the number of news feed a subscriber can subscribe to. Justify your answers. (e.g., identify the advantages and disadvantage for inserting, deleting, and searching through different complex types.)
1
Expert's answer
2016-06-09T08:26:02-0400
We can use array for the first case, where array element is user and we can easy get array size. And for second case we can use list, for inserting and deleting (subscribing/unsubscribing) feeds
Comments
Leave a comment