473,398 Members | 2,088 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,398 software developers and data experts.

Delete every mth element in a linked list ??

This is a normal interview question, which goes like this
"Given a linked list of integers, delete every mth node and return the
last remaining node."

eg: Linked list = 4->6->7->3->5->6->10->1->23->17
Delete every 3rd node (m = 3) and return the last remaining node
meaning...
4->6->3->5->10->1->17
4->3->5->1->17
3->5->17
3->17
3

after deleting every 3rd node the last remaining node is 3, so node
with data 3 is returned.
function prototype:

node* deleteEveryMth(node** head, int m)
{
// .... your code

}

thanks
A

Dec 20 '06 #1
10 4283
Aditya said:
This is a normal interview question, which goes like this
"Given a linked list of integers, delete every mth node and return the
last remaining node."

eg: Linked list = 4->6->7->3->5->6->10->1->23->17
Delete every 3rd node (m = 3) and return the last remaining node
meaning...
4->6->3->5->10->1->17
4->3->5->1->17
3->5->17
3->17
3

after deleting every 3rd node the last remaining node is 3, so node
with data 3 is returned.
function prototype:

node* deleteEveryMth(node** head, int m)
{
// .... your code
No, yours.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Dec 20 '06 #2
Aditya wrote:
This is a normal interview question, which goes like this
"Given a linked list of integers, delete every mth node and return the
last remaining node."
Please don't post to multiple groups, cross post if you must, or better
still, post to one group.

--
Ian Collins.
Dec 20 '06 #3
On 20 Dec 2006 01:36:00 -0800, "Aditya" <ad*****@gmail.comwrote:
>This is a normal interview question, which goes like this
I've never asked this question in an interview, nor do I ever plan to.
I guess I must be abnormal.
>"Given a linked list of integers, delete every mth node and return the
last remaining node."

eg: Linked list = 4->6->7->3->5->6->10->1->23->17
Delete every 3rd node (m = 3) and return the last remaining node
meaning...
4->6->3->5->10->1->17
4->3->5->1->17
3->5->17
3->17
3

after deleting every 3rd node the last remaining node is 3, so node
with data 3 is returned.
function prototype:

node* deleteEveryMth(node** head, int m)
{
// .... your code

}
I have no clue.

But if, and when, I ever need to know how to delete every mth node in
a linked list of integers, I'll spend the time to learn how to do it
right, and I'll get it right. And the customer will pay me dearly for
it.

At an interview, I start off with asking very simple questions, like
what's wrong with the following statements?

void main(void);
i = i++ % MAX_VAL;
p = (int*)malloc(4 * 4);
int main(void) {return -1;}
goto ERROR;
gets(s);
fflush(STDIN);
#define N X+1
unsigned i; for(i=1;i>=0;i--)
while(1)

Once they answer those questions, it's usually easy to determine where
the interview is headed.

--
jay
Dec 20 '06 #4
jaysome said:

<snip>
>
At an interview, I start off with asking very simple questions,
Ooh, ooh, I love these...
like
what's wrong with the following statements?

void main(void);
It's not a statement.
i = i++ % MAX_VAL;
MAX_VAL is undefined, so you can't take its percentage.
p = (int*)malloc(4 * 4);
(int*): malloc returns a pointer, and you can't multiply ints by pointers.
int main(void) {return -1;}
The actual program has been left out.
goto ERROR;
goto can't be an error; it's a keyword, so it's built into the language.
gets(s);
Should be: s = gets(s);
fflush(STDIN);
Ah, good old case sensitivity. This should of course be FFLUSH(STDIN);
#define N X+1
As everyone knows, X stands for unknown, so X+1 is meaningless.
unsigned i; for(i=1;i>=0;i--)
i is a lousy name for a variable. Better:

unsigned eternity_ring; for(eternity_ring = 1;
eternity_ring >= 0;
eternity_ring --)

Note the cool formatting, which should ensure that I get 11/10 for this
quiz.
while(1)
Should be while(2), as it is the second loop in this test.
Once they answer those questions, it's usually easy to determine where
the interview is headed.
How did I do? :-)

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Dec 20 '06 #5

"Aditya" <ad*****@gmail.comwrote in message
news:11**********************@a3g2000cwd.googlegro ups.com...
This is a normal interview question, which goes like this
"Given a linked list of integers, delete every mth node and return the
last remaining node."

eg: Linked list = 4->6->7->3->5->6->10->1->23->17
Delete every 3rd node (m = 3) and return the last remaining node
meaning...
4->6->3->5->10->1->17
4->3->5->1->17
3->5->17
3->17
3

after deleting every 3rd node the last remaining node is 3, so node
with data 3 is returned.
function prototype:

node* deleteEveryMth(node** head, int m)
{
// .... your code

}

thanks
A
The example looks broken. And how do you delete the 3rd node
from a list with two entries?
Dec 20 '06 #6

"Richard Heathfield" <rj*@see.sig.invalidwrote in message
news:C_******************************@bt.com...
jaysome said:

<snip>

At an interview, I start off with asking very simple questions,

Ooh, ooh, I love these...
unsigned i; for(i=1;i>=0;i--)

i is a lousy name for a variable. Better:

unsigned eternity_ring; for(eternity_ring = 1;
eternity_ring >= 0;
eternity_ring --)

Note the cool formatting, which should ensure that I get 11/10 for this
quiz.
while(1)

Should be while(2), as it is the second loop in this test.
I would have missed this one I would have said it should be:
unsigned i; for(i=1;i>=0;i--)
Dec 20 '06 #7
Barry said:

<snip>
The example looks broken. And how do you delete the 3rd node
from a list with two entries?
Like this.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Dec 20 '06 #8
2006-12-20 <uf********************************@4ax.com>,
jaysome wrote:
void main(void);
Nothing, assuming that main is never used in the scope in which this
declaration appears.
p = (int*)malloc(4 * 4);
There's several things wrong with it. The most obvious one is casting
malloc, but there's also the assumption that int has a size of 4.
int main(void) {return -1;}
The range of values that main may return is implementation-defined. On
some implementations (this answer is appropriate if interviewing for
a position where you know you'll be programming for windows or unix), it
must be between 0 and 255. For portable code, it must be 0,
EXIT_SUCCESS, or EXIT_FAILURE.
goto ERROR;
ERROR is a reserved identifier. (I hope this is what you were looking
for, rather than some trite condemnation of the use of "goto" without
seeing the context)
fflush(STDIN);
Nothing, assuming that STDIN is of type FILE * and points to a file
opened for output. However, isn't that a bit of a trick question? It'd
be bad programming practice to use that name anyway I guess.
unsigned i; for(i=1;i>=0;i--)
i will wrap around to at least 65535 after reaching 0; it will never
become less than 0.
while(1)
Not sure I see the problem here. for(;;) might be better style.

If you think it's less efficient, this says more about the interviewer
than the interviewee.
Once they answer those questions, it's usually easy to determine where
the interview is headed.
Dec 20 '06 #9
On Wed, 20 Dec 2006 10:42:51 +0000, Richard Heathfield
<rj*@see.sig.invalidwrote:
>jaysome said:

<snip>
>>
At an interview, I start off with asking very simple questions,

Ooh, ooh, I love these...
>like
what's wrong with the following statements?

void main(void);

It's not a statement.
>i = i++ % MAX_VAL;

MAX_VAL is undefined, so you can't take its percentage.
>p = (int*)malloc(4 * 4);

(int*): malloc returns a pointer, and you can't multiply ints by pointers.
>int main(void) {return -1;}

The actual program has been left out.
>goto ERROR;

goto can't be an error; it's a keyword, so it's built into the language.
>gets(s);

Should be: s = gets(s);
>fflush(STDIN);

Ah, good old case sensitivity. This should of course be FFLUSH(STDIN);
>#define N X+1

As everyone knows, X stands for unknown, so X+1 is meaningless.
>unsigned i; for(i=1;i>=0;i--)

i is a lousy name for a variable. Better:

unsigned eternity_ring; for(eternity_ring = 1;
eternity_ring >= 0;
eternity_ring --)

Note the cool formatting, which should ensure that I get 11/10 for this
quiz.
>while(1)

Should be while(2), as it is the second loop in this test.
>Once they answer those questions, it's usually easy to determine where
the interview is headed.

How did I do? :-)
Further interrogation would be required to determine that. I must
admit that, based on your answers, I would need to excuse myself for a
moment while I grabbed my Schildt hard-copy of the standard. I'd
recite a good number of carefully chosen passages from the text of the
book, and simply ask you after each citation: "Am I reading from the
left or the right page"? Answer them all and you'd score an 11.

Happy Holidays
--
jay

Dec 21 '06 #10
jaysome said:
On Wed, 20 Dec 2006 10:42:51 +0000, Richard Heathfield
<rj*@see.sig.invalidwrote:
<snip>
>>How did I do? :-)

Further interrogation would be required to determine that. I must
admit that, based on your answers, I would need to excuse myself for a
moment while I grabbed my Schildt hard-copy of the standard. I'd
recite a good number of carefully chosen passages from the text of the
book, and simply ask you after each citation: "Am I reading from the
left or the right page"? Answer them all and you'd score an 11.
Easy-peasy. "Yes. Yes. Yes." (Watching interviewer's eyes carefully...) "No,
you just made that one up. Yes. Yes. No. ..."

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Dec 21 '06 #11

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

Similar topics

14
by: Timothy Madden | last post by:
Hello I have a linked list of object of a class. I thought it would be nice to have the destructor delete the whole list when I delete just the first element. I don't want to recursivly destroy...
3
by: arvind.nm | last post by:
hi, if i create a linked list like list<char> stk; if i want to remove the first element from the list and i write stk.pop_front() the node is still present but the char stored is now '\0',why?...
2
by: PRadyut | last post by:
in this code the delete function does not delete the last node of the double linked list the code ---------------------------------------------------------------- #include <stdio.h>...
4
by: eksamor | last post by:
I have a simple linked list: struct element { struct element *next; int start; }; struct list { struct element *head;
5
by: Aditya | last post by:
This is a normal interview question, which goes like this "Given a linked list of integers, delete every mth node and return the last remaining node." eg: Linked list =...
10
by: ac.c.2k7 | last post by:
Hello Everyone, The solution to this is to copy the data from the next node into this node and delete the next node!. 1. But if the node to be deleted is the last node. Then what should we do ?...
11
by: hotice | last post by:
How to write code to delete a specific node in a single link list that takes O(1) time? £¨ link list uses pointers, not hash. £© That is, the time deleting a node is the same (independent from...
7
by: =?utf-8?B?5YiY5piK?= | last post by:
Hi, folks, Is it possible to delete an element from a sorted array with O(1) time? Best regards
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.