473,394 Members | 1,812 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

what is the prog coding for this question and what it output

Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack
empty.

i hope u guys can help me,for me it is difficult question.
Nov 14 '05 #1
20 1886
mohd hisham wrote:

Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack
empty.
Which do you mean? Queues are generally LIFO. Stacks are generally FIFO.

i hope u guys can help me,for me it is difficult question.


I can get you started, but you'll need to fill in the blanks.

#include <stdio.h>

int insert(void *p)
{
return 0;
}

int delete(void *p)
{
return 0;
}

int display(void *p)
{
return 0;
}

int main(void)
{
insert(NULL);
delete(NULL);
display(NULL);
return 0;
}
Nov 14 '05 #2
mohd hisham wrote:
Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack
empty.

i hope u guys can help me,for me it is difficult question.


It appears you've forgotten to post the code you've written so far to
ask about. Post it and then perhaps you can get some help.

Nov 14 '05 #3
"mohd hisham" <sh*******@yahoo.com> wrote in message
news:41********@news.tm.net.my...
Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack
empty.

i hope u guys can help me,for me it is difficult question.


If you contact me privately and agree upon a pay
rate, I'll certainly write it for you (if you can
convince me this isn't a homework assignment).

However, if you try to write it yourself, but get stuck,
and post your code along with specific questions,
I (and I suspect many others) will help you for free.

-Mike
Nov 14 '05 #4
"mohd hisham" <sh*******@yahoo.com> writes:
Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack
empty.


Give us your instructor's e-mail address; we'll just send it to him
directly.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #5

"infobahn" <in******@btinternet.com> wrote in message
news:41**************@btinternet.com...
mohd hisham wrote:

Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack empty.


Which do you mean? Queues are generally LIFO. Stacks are generally FIFO.


Leave out "generally" and i'd agree. Insertions and deletions (at the
appropriate places) are legitimate operations in both.

I like your "skeleton" code. Should not be a problem to fill in the blanks.
Nov 14 '05 #6
"osmium" <r1********@comcast.net> writes:
[...]
I realize that some people use the word "queue" for a linked list, but I
would never do that. To me a queue should connote a physical queue, as a
line of people waiting for a bus. A linked list is something that doesn't
exist in the real world, it's a programmer's invention. OTOH, a queue does
have a real world manifestation.


A queue is a well-established term for a first-in first-out data
structure. A linked list is one way to implement a queue.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #7
In article <41********@news.tm.net.my>, sh*******@yahoo.com says...
Write a C program to construct a queue of integers and to perform the
following operations on it:
a. insert
b. delete
c. display
The program should print appropriate messages for stack overflow and stack
empty.
Someone else helped you with some starting code, and that is all you are
likely to get until long after the homework assignment is due. If you
get others to do your work for you now, who will do them for you later?
You certainly won't know how.
i hope u guys can help me,for me it is difficult question.


It is not difficult at all. That is why you are being asked to do it
now, in an early CS course, instead of later in the real world, where
the problem description would be many pages long and considerably
tougher to implement.

--
Randy Howard (2reply remove FOOBAR)
"For some reason most people seem to be born without the part
of the brain that understands pointers." -- Joel Spolsky
Nov 14 '05 #8
On Tue, 1 Feb 2005 08:23:29 -0800, osmium
<r1********@comcast.net> wrote:
"dandelion" writes:
"osmium" <r1********@comcast.net> wrote in message
news:36*************@individual.net...

Why does a double ended queue have overflow? As I said, you can run out of
hardware, but an application programmer doesn't usually consider this.


As the storage for the queue, you would normally use a predimensioned
array,
which can be full adn hence, overflowed.

eg

int dequeue[Q_SIZE];

would overflow if more than Q_SIZE elements have been inserted.


Well, that strikes me as plain silly. You just flushed one of the main
advantages of the data structure right down the drain.


It depends why and how you want to use it. A deque using a circular
fixed-size buffer can be very useful in some circumstances (a
flow-controlled input buffer where a character can be "pushed back", for
instance). Or a queue of processes to be run where the number of
processes in the system is fixed.
I have often modeled lists and stacks by use of an array. But I consider
those very light duty, not fit for general consumption.
Perhaps yours were. I've seen plenty in embedded real-time systems in
the Real World(tm). For that matter a number of Unix systems have
fixed-size stacks per process (and even one which isn't thought of as
fixed size will have a limit in practice, even if it's several
gigabytes).
In my experience an array is an especially easy way to make a stack, I
usually have a handle on the upper limit. For lists, in general, I
have no decent guess to work with.


Plenty of applications do have more than a "decent guess" to work with,
especially in embedded systems where resources are strictly limited so
that the behaviour is known (limited number of tasks and message queues,
for example).

Chris C
Nov 14 '05 #9
On Tue, 1 Feb 2005 05:25:16 -0800, "osmium" <r1********@comcast.net>
wrote:
<snip>

I realize that some people use the word "queue" for a linked list, but I
would never do that. To me a queue should connote a physical queue, as a
line of people waiting for a bus. A linked list is something that doesn't
exist in the real world, it's a programmer's invention. OTOH, a queue does
have a real world manifestation.


A series of traffic signposts that you follow to arrive at a final
destination (or any intermediate node/city) is a perfectly good
real world example of a linked list.

Just follow the arrows on the signs.

Oz
--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Nov 14 '05 #10
Lew Pitcher wrote:
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Michael Mair wrote:
Lew Pitcher wrote:

infobahn wrote:
[snip]
Which do you mean? Queues are generally LIFO. Stacks are generally FIFO.

ITYM "Queues are generally FIFO (First In, First Out). Stacks are
generally LIFO (Last In, First Out)"


Think again.

I have. Why don't you?

It's not the definitive reference, but try
http://wombat.doc.ic.ac.uk/foldoc/fo...&action=Search
and
http://wombat.doc.ic.ac.uk/foldoc/fo...&action=Search

You are right -- should not have posted with fever :-/

Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Nov 14 '05 #11
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Michael Mair wrote:
Lew Pitcher wrote:
Michael Mair wrote:
Lew Pitcher wrote:
infobahn wrote:
> Which do you mean? Queues are generally LIFO. Stacks are generally
> FIFO.

ITYM "Queues are generally FIFO (First In, First Out). Stacks are
generally LIFO (Last In, First Out)"

Think again.
I have. Why don't you?

[snip] You are right -- should not have posted with fever :-/


No harm, no foul.

Just want to make sure we're all talking the same language ;-)

- --
Lew Pitcher

Master Codewright & JOAT-in-training | GPG public key available on request
Registered Linux User #112576 (http://counter.li.org/)
Slackware - Because I know what I'm doing.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFCAFG5agVFX4UWr64RAl+LAJ49g/0OOh1dvgB6CGPliFLoWwPnsACg3Dbe
JYythvwcyaBwIXCmWXW+Jv4=
=lAfa
-----END PGP SIGNATURE-----
Nov 14 '05 #12
On Wed, 02 Feb 2005 02:37:30 +0000, ozbear wrote:
On Tue, 1 Feb 2005 05:25:16 -0800, "osmium" <r1********@comcast.net>
wrote:
<snip>

I realize that some people use the word "queue" for a linked list, but I
would never do that. To me a queue should connote a physical queue, as a
line of people waiting for a bus. A linked list is something that doesn't
exist in the real world, it's a programmer's invention. OTOH, a queue does
have a real world manifestation.


A series of traffic signposts that you follow to arrive at a final
destination (or any intermediate node/city) is a perfectly good
real world example of a linked list.


It is similar but signposts usually tell you about the direction towards
a place, not the location of the next signpost.

Lawrence
Nov 14 '05 #13
On Tue, 01 Feb 2005 18:24:36 +0000, Chris Croughton wrote:
On Tue, 1 Feb 2005 08:23:29 -0800, osmium
<r1********@comcast.net> wrote:
....
I have often modeled lists and stacks by use of an array. But I consider
those very light duty, not fit for general consumption.


Perhaps yours were. I've seen plenty in embedded real-time systems in
the Real World(tm).


Yes, they are viable in well controlled environments.
For that matter a number of Unix systems have
fixed-size stacks per process (and even one which isn't thought of as
fixed size will have a limit in practice, even if it's several
gigabytes).


There are differences between a fixed sized stack and a variable stack
with a size limit. E.g. in implementations where, say, "stack" grown down
from the top of the address space and "heap" grows up from the bottom, if
a program uses less "stack" space than it is allowed it may be able to use
the extra for "heap" allocation. There there is the question of whether
memory for the fixed sized stack is pre-allocated.

Lawrence
Nov 14 '05 #14
On Wed, 02 Feb 2005 11:06:44 +0000, Lawrence Kirby
<lk****@netactive.co.uk> wrote:
On Tue, 01 Feb 2005 18:24:36 +0000, Chris Croughton wrote:
For that matter a number of Unix systems have
fixed-size stacks per process (and even one which isn't thought of as
fixed size will have a limit in practice, even if it's several
gigabytes).


There are differences between a fixed sized stack and a variable stack
with a size limit. E.g. in implementations where, say, "stack" grown down
from the top of the address space and "heap" grows up from the bottom, if
a program uses less "stack" space than it is allowed it may be able to use
the extra for "heap" allocation. There there is the question of whether
memory for the fixed sized stack is pre-allocated.


Yes, the stacks which share a data area are a different problem (and one
that's harder to predict, because it depends on the dynamic size of the
'heap'). The program may run fine sometimes and not others. That's why
with embedded systems the stacks are generally not shared with anything
else, so that the behaviour is predictable (the same often goes for
dynamic memory, it's allocated in fixed areas or 'pools' of fixed size,
to avoid fragmentation problems).

Chris C
Nov 14 '05 #15

In article <sl******************@ccserver.keris.net>, Chris Croughton <ch***@keristor.net> writes:
On Tue, 1 Feb 2005 08:23:29 -0800, osmium
<r1********@comcast.net> wrote:
I have often modeled lists and stacks by use of an array. But I consider
those very light duty, not fit for general consumption.


Perhaps yours were. I've seen plenty in embedded real-time systems in
the Real World(tm).


Even when memory constraints aren't the limiting factor, there may
be good reason to use a fixed-size array-based queue. Better locality
of reference, for example. Faster access. I might use a fixed-size
array queue in a producer-consumer architecture where, if the queue
fills, the producer should be suspended to give the consumer a while
to catch up; there might not be any advantage to enlarging the queue.

Many real-world applications should impose limits on how much work
they're willing to accept. That often provides for a much more
graceful failure mode than simply taking everything on until the load
becomes unsustainable. The "all data structures must be extensible"
philosophy is part of the mindset that gives us bloatware and
unstable application software.

--
Michael Wojcik mi************@microfocus.com

Art is our chief means of breaking bread with the dead ... but the social
and political history of Europe would be exactly the same if Dante and
Shakespeare and Mozart had never lived. -- W. H. Auden
Nov 14 '05 #16
On 2 Feb 2005 21:59:02 GMT, Michael Wojcik
<mw*****@newsguy.com> wrote:
In article <sl******************@ccserver.keris.net>, Chris Croughton
<ch***@keristor.net> writes:
On Tue, 1 Feb 2005 08:23:29 -0800, osmium
<r1********@comcast.net> wrote:
> I have often modeled lists and stacks by use of an array. But I consider
> those very light duty, not fit for general consumption.
Perhaps yours were. I've seen plenty in embedded real-time systems in
the Real World(tm).


Even when memory constraints aren't the limiting factor, there may
be good reason to use a fixed-size array-based queue. Better locality
of reference, for example. Faster access. I might use a fixed-size
array queue in a producer-consumer architecture where, if the queue
fills, the producer should be suspended to give the consumer a while
to catch up; there might not be any advantage to enlarging the queue.


I didn't say that it was necessarily memory constraints (although all
Real World(tm) ststems do have memory constraints). An example of your
"producer-consumer" situation is the serial buffers I referred to.
Many real-world applications should impose limits on how much work
they're willing to accept. That often provides for a much more
graceful failure mode than simply taking everything on until the load
becomes unsustainable. The "all data structures must be extensible"
philosophy is part of the mindset that gives us bloatware and
unstable application software.


I have no disagreement with that. In particular, a lot of modern
systems using virtual memory can fool applications into thinking that
they have a lot of memory, but the access time for it will get far worse
above a certain point (I've done that, pushed a Unix system to the point
of uselessness by the application requesting memory until it "ran out",
at which point everything was swapped to disk and it took half an hour
just to get a shell to find out what was wrong!).

Chris C
Nov 14 '05 #17
Chris Croughton wrote:
.... snip ...
I have no disagreement with that. In particular, a lot of modern
systems using virtual memory can fool applications into thinking
that they have a lot of memory, but the access time for it will
get far worse above a certain point (I've done that, pushed a Unix
system to the point of uselessness by the application requesting
memory until it "ran out", at which point everything was swapped
to disk and it took half an hour just to get a shell to find out
what was wrong!).


At least there you are expecting it as you push the algorithms.
What got me a few years ago was free() that was O(n) in the number
of allocations made, and thus O(n*n) for freeing everything. The
problem showed up with gcc on DJGPP, with VC on W98, with lcc-win32
on W98, i.e. apparently universal. That made me write nmalloc for
DJGPP, which has an O(1) free algorithm.

The problem generally became obnoxious at between 40,000 and
250,000 allocations, IIRC.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson

Nov 14 '05 #18

In article <sl******************@ccserver.keris.net>, Chris Croughton <ch***@keristor.net> writes:
On 2 Feb 2005 21:59:02 GMT, Michael Wojcik
<mw*****@newsguy.com> wrote:
In article <sl******************@ccserver.keris.net>, Chris Croughton
<ch***@keristor.net> writes:

Perhaps yours were. I've seen plenty in embedded real-time systems in
the Real World(tm).


Even when memory constraints aren't the limiting factor, there may
be good reason to use a fixed-size array-based queue.


I didn't say that it was necessarily memory constraints (although all
Real World(tm) ststems do have memory constraints).


I didn't say you did. I was providing an additional argument which
supported your general thesis, in fact.

Not every Usenet followup is a contradiction.

--
Michael Wojcik mi************@microfocus.com

See who I'm! -- Jackie Chan and unknown subtitler, _Dragons Forever_
Nov 14 '05 #19
mw*****@newsguy.com (Michael Wojcik) writes:
In article <sl******************@ccserver.keris.net>, Chris
Croughton <ch***@keristor.net> writes:
On 2 Feb 2005 21:59:02 GMT, Michael Wojcik
<mw*****@newsguy.com> wrote:
> In article <sl******************@ccserver.keris.net>, Chris Croughton
> <ch***@keristor.net> writes:
>>
>> Perhaps yours were. I've seen plenty in embedded real-time systems in
>> the Real World(tm).
>
> Even when memory constraints aren't the limiting factor, there may
> be good reason to use a fixed-size array-based queue.


I didn't say that it was necessarily memory constraints (although all
Real World(tm) ststems do have memory constraints).


I didn't say you did. I was providing an additional argument which
supported your general thesis, in fact.

Not every Usenet followup is a contradiction.


Yes, it is.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #20
On 4 Feb 2005 13:27:00 GMT, Michael Wojcik
<mw*****@newsguy.com> wrote:
In article <sl******************@ccserver.keris.net>, Chris Croughton <ch***@keristor.net> writes:
On 2 Feb 2005 21:59:02 GMT, Michael Wojcik
<mw*****@newsguy.com> wrote:
> In article <sl******************@ccserver.keris.net>, Chris Croughton
> <ch***@keristor.net> writes:
>>
>> Perhaps yours were. I've seen plenty in embedded real-time systems in
>> the Real World(tm).
>
> Even when memory constraints aren't the limiting factor, there may
> be good reason to use a fixed-size array-based queue.
I didn't say that it was necessarily memory constraints (although all
Real World(tm) ststems do have memory constraints).


I didn't say you did. I was providing an additional argument which
supported your general thesis, in fact.


Apologies for that, I misread your post.
Not every Usenet followup is a contradiction.


I think the pantomime season is over <g>...

Chris C
Nov 14 '05 #21

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Kees | last post by:
I was under the impression that the single quote ' did not interpret the content. prog 1 <HTML> <BODY> <?PHP echo '"a"'; ?> </BODY>
699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
3
by: bernd wegener | last post by:
Hello netties, I coded the following in perl: open(LOGFILE,">&STDOUT") ; if ( $ARGV ) { close(LOGFILE) ; open(LOGFILE,">> $ARGV") or die "Cannot open file $ARGV\n" ;
19
by: Eric Lilja | last post by:
Hello, I have a class that I want to be able to output detailed information about what it's doing either to a file or to the screen. What I first tried was adding a std::ostream-reference member...
11
by: becte | last post by:
What does the standard say about f(x++) ? 1. x is incremented and then the that value is used in function f, i.e. x++; f(x); 2. the value of x (before ++) is send to f and after returning. x is...
2
by: facicad | last post by:
I would like to set topmost another prog. from my program. Ex: I use AutoCAD, run my prog. from autocad. My prog. is topmost but went I would like to pick some object in autocad, I set TopMost to...
0
by: erekose666 | last post by:
I need to make a prog that will 1) Allow the user to select a make of car from a list of say 6 cars in an array I am assuming using get (I think) 2) Allow the user to select a predetermined trip...
1
by: =?Utf-8?B?YXp6YQ==?= | last post by:
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. /PROJECT/edit.asp, line 39 <%@ LANGUAGE="JAVASCRIPT" %> <% var refer =...
1
by: laptop | last post by:
hello frnds im new to this forum, please help me . i have a question paper webpage from where i will be taking answers in form of prog in different languages(perl,php,java,c,c++,python).now since im...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.