-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chapter 04: CircularQueue.java #60
Labels
good first issue
Good for newcomers
hacktober
hacktoberfest
help wanted
Extra attention is needed
question
Further information is requested
up-for-grabs
Comments
@Abhinandan1414 Would you like to add a PR for this? |
Hi Sandy,
I am attaching file.
Best Regards,Abhinandan H. Patil, +919886406214https://www.AbhinandanHPatil.info
On Saturday, 27 June 2020, 3:33:28 am GMT+5:30, Sandeep「 Flame 」 <[email protected]> wrote:
@Abhinandan1414 Would you like to add a PR for this?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
@Abhinandan1414 you cannot attach file and send it to the codebase using mail |
My expectation was that you take it and commit to the code base, So take it, get it reviewed and commit to the code base.
Best Regards,Abhinandan H. Patil, +919886406214https://www.AbhinandanHPatil.info
On Sunday, 28 June 2020, 6:54:32 pm GMT+5:30, Sandeep「 Flame 」 <[email protected]> wrote:
@Abhinandan1414 you cannot attach file and send it to the codebase using mail
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
hello, I want to contribute in this issue but don't know how ..... |
I can send code if you want
Sent from Yahoo Mail on Android
On Tue, Sep 29, 2020 at 12:11 PM, Pallavi Jadhav<[email protected]> wrote:
hello, I want to contribute in this issue but don't know how .....
anybody please help me
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
@pallavijadhav31 Just a pull request with the changes required changes. 👍 |
srsandy
added
good first issue
Good for newcomers
hacktober
hacktoberfest
help wanted
Extra attention is needed
question
Further information is requested
up-for-grabs
labels
Oct 3, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
good first issue
Good for newcomers
hacktober
hacktoberfest
help wanted
Extra attention is needed
question
Further information is requested
up-for-grabs
The mentioned file needs to be re-written. There is no concept of overflow in Circular Queue as it wraps up. What I mean is:
Test Driver Code:
public static void main(String[] agrs) {
CircularQueue q = new CircularQueue(5);
q.insert(10);
q.insert(20);
q.insert(30);
q.insert(40);
q.display();
q.insert(50);
q.display();
q.insert(60);
q.insert(70);
q.display();
q.delete();
q.display();
Should produce output:
$ java CircularQueue
10 20 30 40
10 20 30 40 50 //First five elements
60 70 30 40 50 //Enqueue of 60 and 70
70 30 40 50 //Dequeue
30 40 50 //Dequeue
40 50
//Two Dequeue
60 70 80 //Enqueue of 60 70 80
70 80 //Dequeue
The text was updated successfully, but these errors were encountered: