{"id":24982,"date":"2022-12-07T03:02:48","date_gmt":"2022-12-06T21:32:48","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/"},"modified":"2022-12-07T03:02:48","modified_gmt":"2022-12-06T21:32:48","slug":"solved-pop-function-for-stack-in-c","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/","title":{"rendered":"[Solved] Pop() function for stack in C"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-37976524\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"37976524\" data-parentid=\"37975601\" data-score=\"3\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>It would help to see how you push items onto the stack.  If you&#8217;re really calling <code>pop<\/code> without a <code>push<\/code> first, well, then it&#8217;s not <em>supposed<\/em> to do anything, is it?<\/p>\n<p>This bit makes me nervous:<\/p>\n<pre><code>Node *aux,*prev;\nprev = *stack;\naux = prev-&gt;next;\nif(aux == NULL)\n{\n    free(prev);\n    return;\n}\n<\/code><\/pre>\n<p>You set <code>prev<\/code> to <code>*stack<\/code>, and if nothing follows <code>prev<\/code>, you free it.  Note that since <code>prev == *stack<\/code>, you&#8217;ve also freed <code>*stack<\/code>, so that pointer is now <em>invalid<\/em>.  If you try to access that pointer in your caller, you&#8217;ll invoke Undefined Behavior.  <\/p>\n<p>It looks like you&#8217;re making your list tail the top of the stack; I&#8217;m going to tell you right now that you will make your life <em>much<\/em> simpler if you make the list <em>head<\/em> the top of the stack, such that your pushes and pops look like the following:<\/p>\n<pre><code>bool push( Node **l, int val )\n{\n  Node *p = calloc( 1, sizeof *p );\n  if ( p )\n  {\n    p-&gt;v = val;\n    p-&gt;next = *l;   \/\/ set p to point to the current head of the list\n    *l = p;         \/\/ make p the new head of the list\n  }\n  return p != NULL;  \/\/ will return false if the calloc (and by extenion,\n}                    \/\/ the push operation) fails.  \n\nbool pop( Node **l, int *v )\n{\n  Node *p = *l;      \/\/ p points to head of list\n  if ( !p )\n    return false;\n\n  *v = p-&gt;val;     \/\/ get value in current node\n  *l = p-&gt;next;    \/\/ make the next element the new list head\n  p-&gt;next = NULL;  \/\/ sever the old list head\n  free( p );       \/\/ and deallocate it\n\n  return true;\n}\n<\/code><\/pre>\n<p>No list traversals, no need to keep track of current and previous nodes.  All you care about is the head node.  The statement <code>p-&gt;next = NULL;<\/code> isn&#8217;t strictly necessary since we immediately free <code>p<\/code> afterwards.  I like it because it makes it obvious that we have <em>removed<\/em> <code>p<\/code> from the list, but if you don&#8217;t want to spare the cycles, you can omit it.  <\/p>\n<p><strong>Edit<\/strong><\/p>\n<p>I was right to be nervous about that code. <\/p>\n<p>So here&#8217;s basically what&#8217;s happening &#8211; when you have exactly one item in the stack, you free the head of the list, <strong>but you don&#8217;t update the value of the list pointer<\/strong> (<code>*stack<\/code> in the original code, <code>*l<\/code> in the latest edit).  The value of the <code>stack<\/code> variable in <code>main<\/code> is unchanged, and now it&#8217;s <em>invalid<\/em> &#8211; the memory at that address is no longer allocated.  So the next time you call <code>push<\/code>, it sees that <code>*l<\/code> is not <code>NULL<\/code>, and attempts to traverse down the (non-existent) list.  <\/p>\n<p>At this point the behavior is undefined; literally <em>anything<\/em> can happen.  On my system after the first <code>push<\/code>, <code>stack<\/code> has the value <code>0x501010<\/code>.  I do a <code>pop<\/code>, which <code>free<\/code>s that memory, but doesn&#8217;t change the value of <code>stack<\/code>.  On the next <code>push<\/code>, <code>*l<\/code> is not <code>NULL<\/code>, so I set <code>(*l)-&gt;next<\/code> to whatever <code>malloc<\/code> returns, which in my case is&#8230;<code>0x501010<\/code> again.  So <code>*l<\/code> is <code>0x501010<\/code>, and <code>(*l)-&gt;next<\/code> is <code>0x501010<\/code>.  If I try to push another item, I wind up in an infinite loop (<code>p<\/code> == <code>p-&gt;next<\/code>).  <\/p>\n<p>To fix this, you need to set the list pointer to <code>NULL<\/code> after you <code>free<\/code> it:<\/p>\n<pre><code>Node *aux,*prev;\nprev = *l;\naux = prev-&gt;next;\nif(aux == NULL)\n{\n    free(prev);\n    *l = NULL;\n    return;\n}\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">5<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Pop() function for stack in C <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] It would help to see how you push items onto the stack. If you&#8217;re really calling pop without a push first, well, then it&#8217;s not supposed to do anything, is it? This bit makes me nervous: Node *aux,*prev; prev = *stack; aux = prev-&gt;next; if(aux == NULL) { free(prev); return; } You set prev &#8230; <a title=\"[Solved] Pop() function for stack in C\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/\" aria-label=\"More on [Solved] Pop() function for stack in C\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324,712,376],"class_list":["post-24982","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c","tag-pointers","tag-stack"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] Pop() function for stack in C - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Pop() function for stack in C - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] It would help to see how you push items onto the stack. If you&#8217;re really calling pop without a push first, well, then it&#8217;s not supposed to do anything, is it? This bit makes me nervous: Node *aux,*prev; prev = *stack; aux = prev-&gt;next; if(aux == NULL) { free(prev); return; } You set prev ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-06T21:32:48+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Pop() function for stack in C\",\"datePublished\":\"2022-12-06T21:32:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/\"},\"wordCount\":380,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"c++\",\"pointers\",\"stack\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/\",\"name\":\"[Solved] Pop() function for stack in C - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2022-12-06T21:32:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-pop-function-for-stack-in-c\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Pop() function for stack in C\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Pop() function for stack in C - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Pop() function for stack in C - JassWeb","og_description":"[ad_1] It would help to see how you push items onto the stack. If you&#8217;re really calling pop without a push first, well, then it&#8217;s not supposed to do anything, is it? This bit makes me nervous: Node *aux,*prev; prev = *stack; aux = prev-&gt;next; if(aux == NULL) { free(prev); return; } You set prev ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/","og_site_name":"JassWeb","article_published_time":"2022-12-06T21:32:48+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Pop() function for stack in C","datePublished":"2022-12-06T21:32:48+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/"},"wordCount":380,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["c++","pointers","stack"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/","url":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/","name":"[Solved] Pop() function for stack in C - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-12-06T21:32:48+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-pop-function-for-stack-in-c\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Pop() function for stack in C"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/24982","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=24982"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/24982\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=24982"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=24982"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=24982"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}