Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8408351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T23:36:30+00:00 2026-06-09T23:36:30+00:00

The data structures that we use in applications often contain a great deal of

  • 0

The data structures that we use in applications often contain a great
deal of information of various types, and certian pieces of
information may be belong to multiple independent data structures. For
example, a file of personnel data may contain records with names,
addresses, and various other pieces of information about employees;
and each record may need to belong to one data structure for searching
for particular employees, to another data structure for answering
statistical queries, and so forth.

Despite this diverstiy and complexity, a large class of computing
applications involve generic manipulation of data objects, and need
access to the information associated with them for a limited number of
specific reasons. Many of the manipulations that are required are a
natural outgrowth of basic computational procedures, so they are
needed in broad variety of applications. Many of the fundamental
algorithms can be applied effectively to the task of building a layer
of abstraction that can provide client programs with the ability to
perform such amanipulations efficiently. Thus we shall consider in
detail numerous ADT’s that are associated with such maniupulations.
They define various operations on collections of abstract objects,
independent of the type of the object.

Above text is described in context of abstract data types by Robert Sedwick in Algorithms in C++.

My questions are

What does author mean by “a large class of computing applications involve generic manipulation of data objects and need access to the information associated with them for a limited number of specific reasons.” ? Here what does author mean by generic manipulation and limited number of specific reasons?

What does author mean by “building a layer of abstraction ” so that client programs can perform such manipuations effieciently” ?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T23:36:32+00:00Added an answer on June 9, 2026 at 11:36 pm

    Generic manipulation is when you write code that can process some data without explicitly knowing what type of data it is, just how you can manipulate it.

    Consider std::find from the C++ library:

    template<class InputIterator, class T>
    InputIterator find(InputIterator first, InputIterator last, const T& value)
    {
        for ( ; first != last; ++first) 
            if (*first == value)
                return first;
    
        return last;
    }
    

    This code works for any sequence that can provide an iterator (not just containers), and any type T that can be passed by reference and compared using ==.

    You don’t have to know anything else about T.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The data structures that we use in applications often contain a great deal of
A data structure that I use commonly in multi-threaded applications is a ConcurrentHashMap where
I have the need to use a Stack-like data structure for a program that
I have these two data structures that I continually find myself choosing between when
In the data structures class that I am currently taking, we have been tasked
I'm looking for a data structure (or structures) that would allow me keep me
One of the data structures in my current project requires that I store lists
Which algorithms or data structures are used in auto-suggest features? It seems that edit-distance
for my data structures class, we are making a data structure that we can
Is there a pretty printing function in Clojure that would output data-structures like lists

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.