Data Structure and Algorithms Using C++: A Practical Implementation 1st Edition Sachi Nandan Mohanty All Chapter Instant Download
Data Structure and Algorithms Using C++: A Practical Implementation 1st Edition Sachi Nandan Mohanty All Chapter Instant Download
com
https://textbookfull.com/product/data-structure-
and-algorithms-using-c-a-practical-
implementation-1st-edition-sachi-nandan-mohanty/
https://textbookfull.com/product/primary-mathematics-
textbook-2b-jennifer-hoerst/
textbookfull.com
https://textbookfull.com/product/handbook-of-macroeconomics-
volume-2a-2b-set-1st-edition-john-b-taylor/
textbookfull.com
https://textbookfull.com/product/imposed-rationality-and-besieged-
imagination-practical-life-and-social-pathologies-gustavo-pereira/
textbookfull.com
The Statesman and the Storyteller: John Hay, Mark Twain,
and the Rise of American Imperialism Zwonitzer
https://textbookfull.com/product/the-statesman-and-the-storyteller-
john-hay-mark-twain-and-the-rise-of-american-imperialism-zwonitzer/
textbookfull.com
https://textbookfull.com/product/research-first-edition-philip-kerr/
textbookfull.com
https://textbookfull.com/product/girls-night-in-first-edition-jessica-
adams/
textbookfull.com
https://textbookfull.com/product/entrepreneurship-education-
experiments-with-curriculum-pedagogy-and-target-groups-1st-edition-
mathew-j-manimala/
textbookfull.com
Palestinian Chicago Identity in Exile 1st Edition Loren D.
Lybarger
https://textbookfull.com/product/palestinian-chicago-identity-in-
exile-1st-edition-loren-d-lybarger/
textbookfull.com
Data Structure and Algorithms
Using C++
Scrivener Publishing
100 Cummings Center, Suite 541J
Beverly, MA 01915-6106
Publishers at Scrivener
Martin Scrivener ([email protected])
Phillip Carmical ([email protected])
Data Structure
and Algorithms Using C++
A Practical Implementation
Edited by
Sachi Nandan Mohanty
ICFAI Foundation For Higher Education, Hyderabad, India
and
Pabitra Kumar Tripathy
Kalam Institute of Technology, Berhampur, India
This edition first published 2021 by John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, USA
and Scrivener Publishing LLC, 100 Cummings Center, Suite 541J, Beverly, MA 01915, USA
© 2021 Scrivener Publishing LLC
For more information about Scrivener publications please visit www.scrivenerpublishing.com.
All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or
transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or other-
wise, except as permitted by law. Advice on how to obtain permission to reuse material from this title
is available at http://www.wiley.com/go/permissions.
For details of our global editorial offices, customer services, and more information about Wiley prod-
ucts visit us at www.wiley.com.
ISBN 978-1-119-75054-3
Set in size of 11pt and Minion Pro by Manila Typesetting Company, Makati, Philippines
10 9 8 7 6 5 4 3 2 1
Contents
Preface xi
1 Introduction to Data Structure 1
1.1 Definition and Use of Data Structure 1
1.2 Types of Data Structure 2
1.3 Algorithm 3
1.4 Complexity of an Algorithm 6
1.5 Efficiency of an Algorithm 7
1.6 Asymptotic Notations 8
1.7 How to Determine Complexities 9
1.8 Questions 13
2 Review of Concepts of ‘C++’ 15
2.1 Array 15
2.1.1 One-Dimensional Array 16
2.1.2 Multi-Dimensional Array 17
2.1.3 String Handling 20
2.2 Function 26
2.2.1 User Defined Functions 26
2.2.2 Construction of a Function 27
2.2.3 Actual Argument and Formal Argument 31
2.2.4 Call by Value and Call by Reference 32
2.2.5 Default Values for Parameters 34
2.2.6 Storage Class Specifiers 35
2.3 Pointer 37
2.3.1 Declaration of a Pointer 37
2.3.2 Initialization of a Pointer 37
2.3.3 Arithmetic With Pointer 38
2.3.4 Passing of a Pointer to Function 39
2.3.5 Returning of a Pointer by Function 40
2.3.6 C++ Null Pointer 41
v
vi Contents
2.4 Structure 42
2.4.1 The typedef Keyword 46
2.5 Questions 47
3 Sparse Matrix 49
3.1 What is Sparse Matrix 49
3.2 Sparse Matrix Representations 49
3.3 Algorithm to Represent the Sparse Matrix 51
3.4 Programs Related to Sparse Matrix 52
3.5 Why to Use Sparse Matrix Instead of Simple Matrix? 56
3.6 Drawbacks of Sparse Matrix 57
3.7 Sparse Matrix and Machine Learning 57
3.8 Questions 58
4 Concepts of Class 59
4.1 Introduction to CLASS 59
4.2 Access Specifiers in C++ 60
4.3 Declaration of Class 60
4.4 Some Manipulator Used In C++ 62
4.5 Defining the Member Functions Outside of the Class 64
4.6 Array of Objects 64
4.7 Pointer to Object 66
4.8 Inline Member Function 67
4.9 Friend Function 69
4.9.1 Simple Friend Function 69
4.9.2 Friend With Inline Substitution 70
4.9.3 Granting Friendship to Another Class
(Friend Class) 71
4.9.4 More Than One Class Having the Same
Friend Function 73
4.10 Static Data Member and Member Functions 75
4.11 Constructor and Destructor 78
4.11.1 Constructor 78
4.11.1.1 Empty Constructor 79
4.11.1.2 Default Constructor 79
4.11.1.3 Parameterized Constructors 80
4.11.1.4 Copy Constructor 81
4.11.2 Destructor 83
4.12 Dynamic Memory Allocation 84
4.13 This Pointer 86
4.14 Class Within Class 87
4.15 Questions 89
Contents vii
5 Stack 91
5.1 STACK 91
5.2 Operations Performed With STACK 91
5.3 ALGORITHMS 93
5.4 Applications of STACK 96
5.5 Programming Implementations of STACK 106
5.6 Questions 126
6 Queue 129
6.1 Queue 129
6.2 Types of Queue 129
6.3 Linear Queue 129
6.4 Circular Queue 134
6.5 Double Ended Queue 138
6.6 Priority Queue 139
6.7 Programs 142
6.8 Questions 165
7 Linked List 167
7.1 Why Use Linked List? 167
7.2 Types of Link List 167
7.3 Single Link List 168
7.4 Programs Related to Single Linked List 177
7.4.1 /* Creation of a Linked List */ 177
7.4.2 /* Insert a Node Into a Simple Linked List at
the Beginning */ 178
7.4.3 /* Insert a Node Into a Simple Linked List at
the End of the List */ 180
7.4.4 /* Insert a Node Into a Simple Linked List
When the Node Is Known */ 182
7.4.5 /* Insert a Node Into a Simple Linked List
Information Is Known and Put After Some
Specified Node */ 184
7.4.6 /* Deleting the First Node From a Simple
Linked List */ 187
7.4.7 /* Deleting the Last Node From a Simple
Linked List */ 189
7.4.8 /* Deleting a Node From a Simple Linked
List When Node Number Is Known */ 191
7.4.9 Deleting a Node From a Simple Linked List
When Information of a Node Is Given 193
viii Contents
11 Hashing 391
11.1 Hash Functions 391
11.2 Collisions 393
11.3 Collision Resolution Methods 393
11.4 Clustering 394
11.5 Questions 395
Index 397
Preface
Welcome to the first edition of Data Structures and Algorithms Using C++.
A data structure is the logical or mathematical arrangement of data in
memory. To be effective, data has to be organized in a manner that adds to
the efficiency of an algorithm and also describe the relationships between
these data items and the operations that can be performed on these items.
The choice of appropriate data structures and algorithms forms the funda-
mental step in the design of an efficient program. Thus, a deep understand-
ing of data structure concepts is essential for students who wish to work
on the design and implementation of system software written in C++, an
object-oriented programming language that has gained popularity in both
academia and industry. Therefore, this book was developed to provide
comprehensive and logical coverage of data structures like stacks, queues,
linked lists, trees and graphs, which makes it an excellent choice for learn-
ing data structures. The objective of the book is to introduce the concepts
of data structures and apply these concepts in real-life problem solving.
Most of the examples presented resulted from student interaction in the
classroom. This book utilizes a systematic approach wherein the design of
each of the data structures is followed by algorithms of different operations
that can be performed on them and the analysis of these algorithms in
terms of their running times.
This book was designed to serve as a textbook for undergraduate engi-
neering students across all disciplines and postgraduate level courses in
computer applications. Young researchers working on efficient data storage
and related applications will also find it to be a helpful reference source to
guide them in the newly established techniques of this rapidly growing
research field.
xi
1
Introduction to Data Structure
• Organization of data
• Accessing methods
• Degree of associativity
• Processing alternatives for information
The data structures are the building blocks of a program and hence the
selection of a particular data structure stresses on
Sachi Nandan Mohanty and Pabitra Kumar Tripathy. Data Structure and Algorithms Using C++:
A Practical Implementation, (1–14) © 2021 Scrivener Publishing LLC
1
2 Data Structure and Algorithms Using C++
DATA STRUCTURE
• Traversing
• Insertion
• Deletion
• Merging
• Sorting
• Searching
Introduction to Data Structure 3
1.3 Algorithm
The step by step procedure to solve a problem is known as the ALGORITHM.
An algorithm is a well-organized, pre-arranged, and defined computational
module that receives some values or set of values as input and provides a
single or set of values as out put. These well-defined computational steps
are arranged in sequence, which processes the given input into output.
An algorithm is said to be accurate and truthful only when it provides
the exact wanted output.
The efficiency of an algorithm depends on the time and space complex-
ities. The complexity of an algorithm is the function which gives the run-
ning time and/or space in terms of the input size.
Ex :
5.23 = 5 5.23 =6
4 Data Structure and Algorithms Using C++
Remainder Function
To find the remainder “mod” function is being used as
A mod B
Summation Symbol
To add a series of number as a1+ a2 + a3 +…………+ an the
symbol Σ is used
n
Σ ai
i=1
Factorial of a Number
The product of the positive integers from 1 to n is known as
the factorial of n and it is denoted as n!.
0! = 1
Algorithemic Notations
While writing the algorithm the comments are provided with in [ ].
The assignment should use the symbol “: =” instead of “=”
For Input use Read : variable name
For output use write : message/variable name
The control structures can also be allowed to use inside an algorithm but
their way of approaching will be some what different as
Simple If
If condition, then:
Statements
[end of if structure]
Introduction to Data Structure 5
If…else
If condition, then:
Statements
Else :
Statements
[end of if structure]
If…else ladder
If condition1, then:
Statements
Else If condition2, then:
Statements
Else If condition3, then:
Statements
…………………………………………
…………………………………………
…………………………………………
Else If conditionN, then:
Statements
Else:
Statements
[end of if structure]
LOOPING CONSTRUCT
Repeat for var = start_value to end_value by
step_value
Statements
[end of loop]
OUTPUT
1 3 5 7 9
6 Data Structure and Algorithms Using C++
Space Complexity
The space complexity of a program is the amount of memory it needs to
run to completion. The space needed by a program is the sum of the fol-
lowing components:
• A fixed part that includes space for the code, space for sim-
ple variables and fixed size component variables, space for
constants, etc.
• A variable part that consists of the space needed by com-
ponent variables whose size is dependent on the particular
problem instance being solved, and the stack space used by
recursive procedures.
Time Complexity
The time complexity of a program is the amount of computer time it needs
to run to completion. The time complexity is of two types such as
• Compilation time
• Runtime
Suppose space is fixed for one algorithm then only run time will be con-
sidered for obtaining the complexity of algorithm, these are
• Best case
• Worst case
• Average case
Best Case
Generally, most of the algorithms behave sometimes in best case. In this
case, algorithm searches the element for the first time by itself.
For example: In linear search, if it finds the element for the first time by
itself, then it behaves as the best case. Best case takes shortest time to exe-
cute, as it causes the algorithms to do the least amount of work.
Worst Case
In worst case, we find the element at the end or when searching of elements
fails. This could involve comparing the key to each list value for a total of
N comparisons.
For example in linear search suppose the element for which algorithm
is searching is the last element of array or it is not available in array then
algorithm behaves as worst case.
Average Case
Analyzing the average case behavior algorithm is a little bit complex than
the best case and worst case. Here, we take the probability with a list of
data. Average case of algorithm should be the average number of steps but
since data can be at any place, so finding exact behavior of algorithm is
difficult. As the volume of data increases, the average case of algorithm
behaves like the worst case of algorithm.
Introduction
An important question is: How efficient is an algorithm or piece of code?
Efficiency covers lots of resources, including:
CPU (time) usage
Memory usage
Disk usage
Network usage
Visit https://textbookfull.com
now to explore a rich
collection of eBooks, textbook
and enjoy exciting offers!
Introduction to Data Structure 9
All are important but we will mostly talk about CPU time
Be careful to differentiate between:
Note: As an example,
O(1) refers to constant time.
O(n) indicates linear time;
O(nk) (k fixed) refers to polynomial time;
O(log n) is called logarithmic time;
O(2n) refers to exponential time, etc.
n² + 3n + 4 is O(n²), since n² + 3n + 4 < 2n² for all n > 10. Strictly speaking,
3n + 4 is O(n²), too, but big-O notation is often misused to mean equal to
rather than less than.
1. Sequence of statements
statement 1;
statement 2;
...
statement k;
10 Data Structure and Algorithms Using C++
The outer loop executes N times. Every time the outer loop
executes, the inner loop executes M times. As a result, the
statements in the inner loop execute a total of N * M times.
Thus, the complexity is O(N * M). In a common special case
Introduction to Data Structure 11
Examples
Q1. What is the worst-case complexity of the each of the following code
fragments?
Answer: Th
e first loop is O(N) and the second loop is O(M). Since you
do not know which is bigger, you say this is O(N+M). This can
also be written as O(max(N,M)). In the case where the second
loop goes to N instead of M the complexity is O(N). You can
see this from either expression above. O(N+M) becomes O(2N)
and when you drop the constant it is O(N). O(max(N,M))
becomes O(max(N,N)) which is O(N).
12 Data Structure and Algorithms Using C++
Q2. How would the complexity change if the second loop went to N
instead of M?
A nested loop followed by a non-nested loop:
for (i = 0; i < N; i++) {
for (j = 0; j < N; j++) {
sequence of statements
}
}
for (k = 0; k < N; k++) {
sequence of statements
}
Answer: Th
e first set of nested loops is O(N2) and the second loop is
O(N). This is O(max(N2,N)) which is O(N2).
Q3. A nested loop in which the number of times the inner loop executes
depends on the value of the outer loop index:
for (i = 0; i < N; i++) {
for (j = i; j < N; j++) {
sequence of statements
}
}
Answer: W
hen i is 0 the inner loop executes N times. When i is 1 the
inner loop executes N-1 times. In the last iteration of the outer
loop when i is N-1 the inner loop executes 1 time. The number
of times the inner loop statements execute is N + N-1 + ... + 2 +
1. This sum is N(N+1)/2 and gives O(N2).
Q4. For each of the following loops with a method call, determine the
overall complexity. As above, assume that method f takes constant time,
and that method g takes time linear in the value of its parameter.
Answer: a. E
ach call to f(j) is O(1). The loop executes N times so it is N x
O(1) or O(N).
b. The first time the loop executes j is 0 and g(0) takes “no oper-
ations.” The next time j is 1 and g(1) takes 1 operations. The
last time the loop executes j is N-1 and g(N-1) takes N-1 oper-
ations. The total work is the sum of the first N-1 numbers and
is O(N2).
Introduction to Data Structure 13
c. Each time through the loop g(k) takes k operations and the
loop executes N times. Since you do not know the relative size
of k and N, the overall complexity is O(N x k).
1.8 Questions
1. What is data structure?
2. What are the types of operations that can be performed with
data structure?
3. What is asymptotic notation and why is this used?
4. What is complexity and its type?
5. Find the complexity of 3n2 + 5n.
6. Distinguish between linear and non-linear data structure.
7. Is it necessary is use data structure in every field? Justify
your answer.
Random documents with unrelated
content Scribd suggests to you:
The conventionalized Roman busts with the Greek lettering were so
top-heavy in appearance that I grew quite dizzy....
I found relief in the sculptor of the Ancient Greeks,—peace in the
simplicity of a strange inspired beauty that intricate handling which
draws on past glories can never produce.
C. A. Z.
Fairy-Tale Mysticism
Jerusalem, a Novel by Selma Lagerlöf (Doubleday, Page & Co., New York).
UNWORTHY!
Rev. W. D. J., Riverside, Ill.:
I used to have great expectations for you. But, pardon the
frankness of one who has watched the careers of many writers in
the past fifty years, you are headed now either for the lake or a
padded cell. God forbid you reach either. Let an old man say that the
only way to find life is to lose it. Forget it and reach out a hand to
the poor, the sick, the suffering, and the sinning. Happiness comes
only in forgetfulness of self and ministering to others. It is never the
result of a theory but of action. I have seen so many wrecked on the
reefs toward which you are drifting that I am fain to call out and
entreat you to find happiness where alone it can be found, not in
fleeing from the world or cursing it but in thanking God you were
born into a world where you can be of some use to your fellows.
Those lines of yours in the September issue might have been written
by a Heine, a Byron, or a Walt Whitman. But they are unworthy of
you. You were born to bless your fellows. Be true to your vocation.
AN EXAMPLE!
R. C. Smith, Chicago:
Inspiration will never take the place of intelligence, nor
enthusiasm that of cerebration. Your magazine will die,—as a steam
engine would grow useless in which no direction toward any cylinder
was given to the indubitable forces generated in the boiler. For your
pages are as a rule careless, unconsidered, and inept. Let me give
you an example:—
Mr. Huntley Carter, in your September number, wrote on “Poetry
versus Imagism.” I happen to consider his article an ill-digested
congeries of vague views; but other persons may feel differently
about it. What, however, can be the estimation in which every sane
and intelligent and decently responsible man will hold your magazine
and Mr. Carter when he has the effrontery to present to us such an
example of ineptitude and carelessness as this:—
“Browning ... gets to work in a businesslike manner:
PUBLISHED MONTHLY
Price—Fifteen cents a number
Yearly subscription, One Dollar Sixty Cents
Buy some of the back numbers. They are literature, not journalism.
Little Review
834 Fine Arts Building
EMMA GOLDMAN
will lecture at
Tchai-na-ya
Luncheons, Dinners
Afternoon Tea
Peasant Handicraft
Linens, Laces
Antique Jewelry
730 Sheridan Rd. M. R. POLAKOPF & SON
Statement of Ownership, Management, Circulation, Etc., required
by the Act of August 24, 1912
of THE LITTLE REVIEW published monthly at Chicago, Ill. for Oct. 1st, 1915.
Editor, Margaret C. Anderson, 834 Fine Arts Building, Chicago Managing
Editor, Same Business Manager, Same Publisher, Same
Owners: (If a corporation, give its name and the names and addresses of
stockholders holding 1 per cent or more of total amount of stock. If not a
corporation, give names and addresses of individual owners.)
Margaret C. Anderson
834 Fine Arts Building, Chicago
Known bondholders, mortgagees, and other security holders, holding 1 per
cent or more of total amount of bonds, mortgages, or other securities: None
MARGARET C. ANDERSON,
Sworn to and subscribed before me this 23rd day of Sept., 1915.
MITCHELL DAWSON, Notary Public.
(My commission expires December 20, 1917.)
THE DRAMA
for August Contained This Interesting Material
The Drama for November will be a notable number. Rabindranath Tagore will
contribute an article on the stage that crystallizes much of the present diverse
generalization, especially in discussions of stagecraft. Julius Brouta, perhaps the
most celebrated drama critic of Spain, will write of the work of Benavente, a
brilliant Spanish playwright of today. A puppet play of Benavente, the popular
Los Interessos Creados, will be printed in its entirety. The New Stage Art in its
Relation to Drama will be considered from a new point of view by Alice Corbin
Henderson. The articles begun in the present number, Playing Hamlet as
Shakespeare Staged It in 1601, by Charlotte Porter, and The Evolution of the
Actor, by Arthur Pollock, will be concluded.
In November also will appear what promises to be one of the most important
pieces of dramatic poetry ever written in America, Edwin Arlington Robinson’s
Ben Jonson Entertains a Man from Stratford. In beauty of verse, in poetic vision,
and in its appreciation of the fine human quality of Shakespeare the poem is a
leading feature of the Shakespeare Tercentenary Celebration.
The Drama, a Quarterly 736 Marquette Building Chicago
$3.00 per year
THE
SEXUAL
QUESTION
Heretofore sold by subscription, only to physicians. Now offered to the public.
Written in plain terms. Former price $5.50. Now sent prepaid for $1.60. This is
the revised and enlarged Marshall English translation. Send check, money order
or stamps.
Do you know, for instance, the scientific difference between love and passion?
Human life is full of hideous exhibits of wretchedness due to ignorance of sexual
normality.
Stupid, pernicious prudery long has blinded us to sexual truth. Science was slow
in entering this vital field. In recent years commercialists eyeing profits have
unloaded many unscientific and dangerous sex books. Now the world’s great
scientific minds are dealing with this subject upon which human happiness often
depends. No longer is the subject tabooed among intelligent people.
We take pleasure in offering to the American public, the work of one
of the world’s greatest authorities upon the question of sexual life. He
is August Forel, M.D., Ph.D., LL.D., of Zurich, Switzerland. His book will
open your eyes to yourself and explain many mysteries. You will be
better for this knowledge.
Every professional man and woman, those dealing with social, medical, criminal,
legal, religious and educational matters will find this book of immediate value.
Nurses, police officials, heads of public institutions, writers, judges, clergymen
and teachers are urged to get this book at once.
The subject is treated from every point of view. The chapter on “love and other
irradiations of the sexual appetite” is a profound exposition of sex emotions—
Contraceptive means discussed—Degeneracy exposed—A guide to all in
domestic relations—A great book by a great man.
Violin Recital
All the latest fiction available as soon as published at moderate rental fee.
Most efficient and satisfactory book renting service in Chicago.
Those wishing to purchase new or second hand books are invited to send
us their want lists. Quotations submitted before purchases are made. We
can save you money. Send for catalog.
TWO PRODUCTIONS
by
THE CHICAGO PLAYERS
with
MME. BORGNY HAMMER
EVENINGS
“AGNETE”
by
AMALIE SKRAM
(First Time in English)
SPECIAL MATINEES
“THERESE RAQUIN”
by
EMILE ZOLA
Prices 25c to $1.50
CLARENCE THOMAS
Manager
925 Fine Arts Building
David Penstephen
By RICHARD PRYCE
David is the most lovable of all the author’s creations, a boy who grew to
manhood under conditions that might have warped a soul less noble. $1.35 net.
This book, a companion volume to “The Little Book of Modern Verse,” gives a
bird’s-eye view of the 19th century, beginning with Philip Freneau and ending
with the period of Madison Cawein, Bliss Carman and Richard Hovey. 140 poets
are represented and the book includes 230 poems. Cloth, $1.25 net; limp
leather, $1.75 net.
By HORACE GREEN
This work meets a long-felt need for a complete presentation of the Bacon-
Shakespeare question, and will prove as useful to students of Shakespeare as of
Bacon. It presents an exhaustive review of Shakespearean authors from Rowe
to Lee, as well as a bibliography covering all printed works upon the subject in
English, French, German, Spanish, Scandinavian, Italian, and Russian, articles in
periodical literature, and a wealth of illustrations of great value to students and
collectors. Illustrated. 8vo. $5.00.
By WILLIAM LINDSEY
“A really good romantic drama, one of the best that has been produced in a
generation.... Compact and well made, developing swiftly and logically a tragic
love story of uncommon interest.... Genuinely poetic.... A remarkable work,
both in the literary and dramatic sense.”—The Nation. $1.25 net.
Affirmations
By HAVELOCK ELLIS
By Emile Verhaeren.
Interflow
By Geoffrey C. Faber.
Afternoons of April
... me from the golden toombs of youth, from the scarlet graves of
love, I will ...
... me from the golden tombs of youth, from the scarlet graves of
love, I will ...
... under the distinction of being a maniacle sensualist, a libidinous
ruffian, a ...
... under the distinction of being a maniacal sensualist, a libidinous
ruffian, a ...
... “Peddlars are not allowed on the grounds. He must have
sneaked in.” ...
... “Peddlers are not allowed on the grounds. He must have
sneaked in.” ...
... my countrymen the value to them of Memoiren einer Idealisten.
...
... my countrymen the value to them of Memoiren einer Idealistin.
...
... Grune Heinrich.... I have lived more intensely with Jean
Christophe ...
... Grüne Heinrich.... I have lived more intensely with Jean
Christophe ...
... faced a Herculian task. The government was confronted with a
double ...
... faced a Herculean task. The government was confronted with a
double ...
... the verdict over the imbecile Czar and will cleanse the Aagean
...
... the verdict over the imbecile Czar and will cleanse the Augean
...
*** END OF THE PROJECT GUTENBERG EBOOK THE LITTLE
REVIEW, OCTOBER 1915 (VOL. 2, NO. 7) ***
1.D. The copyright laws of the place where you are located also
govern what you can do with this work. Copyright laws in most
countries are in a constant state of change. If you are outside
the United States, check the laws of your country in addition to
the terms of this agreement before downloading, copying,
displaying, performing, distributing or creating derivative works
based on this work or any other Project Gutenberg™ work. The
Foundation makes no representations concerning the copyright
status of any work in any country other than the United States.