101 Challenges In C++ Programming
eBook - ePub

101 Challenges In C++ Programming

Solve 101 Challenges to sharpen C++ Programming skills

Yashavant Kanetkar,Aditya Kanetkar

Buch teilen
  1. English
  2. ePUB (handyfreundlich)
  3. Über iOS und Android verfügbar
eBook - ePub

101 Challenges In C++ Programming

Solve 101 Challenges to sharpen C++ Programming skills

Yashavant Kanetkar,Aditya Kanetkar

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

Practice them to be a mature a C++ programmerVery often it is found that while creating C++ programs programmers are simply doing C programming with a C++ compiler. As a result, they are unable to exploit the real power that C++ lays at their door steps. Also there are not enough challenges/problems available in text books that would test the programmer' understanding of C++ and OOP concepts. To address these issues Authors have crafted well thought out this book. Their complete solution, sample runs and explanation. These challenges would test and improve your knowledge in every aspect of C++ programming.KEY FEATURES• Strengthens the foundations, as detailed explanation of programming language concepts are given.. • Lists down all important points that you need to know related to various topics in an organized manner.• Prepares you for coding related interview and theoretical questions.• Provides In depth explanation of complex topics and Questions.• Focuses on how to think logically to solve a problem.• Follows systematic approach that will help you to prepare for an interview in short duration of time. WHAT WILL YOU LEARN• Basic C++, Class organization, Class constructor, Classes and Objects, Function challenges• Function, Operator overloading challenges• Free store, Inheritance, Virtual function, Input/output, Exception handling, STL challenges WHO THIS BOOK IS FORStudents, Programmers, researchers, and software developers who wish to learn the basics of C programming language.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist 101 Challenges In C++ Programming als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu 101 Challenges In C++ Programming von Yashavant Kanetkar,Aditya Kanetkar im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Ciencia de la computación & Programación en C++. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

07

More Classes and Objects Challenges

Challenges: 6

This chapter tests your understanding and maturity in developing programs that involve classes and objects.

Challenge 43

Write a program to create an array class. Make a provision to perform following operations on objects of this class:
Traversal: Processing each element in the array
Search: Finding the location of an element with a given value
Insertion: Adding a new element to an array
Deletion: Removing an element from an array
Sorting: Organizing the elements in some order
Merging: Combining two arrays into a single array
Reversing: Reversing the elements of an array

Solution

// Project: chall43
// Array operations
#include <iostream>
using namespace std;
const int MAX = 5;
class array
{
private:
int arr[ MAX ];
public:
void insert (int pos, int num);
void del (int pos);
void reverse(); void display();
void search (int num);
};
// inserts an element num at given position pos
void array:: insert (int pos, int num)
{
int i;
// shift elements to right
for (i = MAX - 1; i >= pos; i--)
arr[ i ] = arr[ i - 1 ]; arr[ i ] = num;
}
// deletes an element from the given position pos
void array:: del (int pos)
{
int i;
// skip to the desired position
for (i = pos; i < MAX; i++)
arr[ i - 1 ] = arr[ i ];
arr[ i - 1 ] = 0;
}
// reverses the entire array
void array:: reverse()
{
int i;
for (i = 0; i < MAX / 2; i++)
{
int temp = arr[ i ];
arr[ i ] = arr[ MAX - 1 - i ];
arr[ MAX - 1 - i ] = temp;
}
}
// searches array for a given element num
void array:: search (int num)
{
int i;
// Traverse the array
for (i = 0; i < MAX; i++)
{
if (arr[ i ] == num)
{
cout << “\n\nThe element” << num
<< “ is present at” << (i + 1) << “th position\n”;
return;
}
}
if (i == MAX)
cout << “\n\nThe element” << num
<< “ is not present in the array\n”;
}
// displays the contents of an array
void array:: display()
{
cout << endl;
// traverse the entire array
for (int i = 0; i < MAX; i++)
cout << “” << arr[ i ];
}
int main()
{
array a;
a.insert (1,11);
a.insert (2,12);
a.insert (3,13);
a.insert (4,14);
a.insert (5,15);
cout << “\nElements of Array: “;
a.display();
a.del (5);
a.del (2);
cout << “\n\nAfter deletion: “;
a.display();
a.insert (2, 222);
a.insert (5, 555);
cout << “\n\nAfter insertion: “;
a.display();
a.reverse();
cout << “\n\nAfter reversing: “;
a.display();
a.search (222);
a.search (666);
return 0;
}

Sample Run

Elements of Array:
11 12 13 14 15
After deletion:
11 13 14 0 0
After insertion:
11 222 13 14 555
After reversing:
555 14 13 222 11
The element 222 is present at 4th position
The element 666 is not present in the array

Explanation

In this program we have designed a class called array. It contains an array arr of 5 ints. The functions like insert(), del(), display(), reverse() and search() access and manipulate the array arr.
The insert() function takes two arguments, the position pos at which the new number has to be inserted and the number num that has to be inserted. In this function,...

Inhaltsverzeichnis