Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8086667
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:31:31+00:00 2026-06-05T18:31:31+00:00

Yet another data structure doubt. I will get straight to it. This is what

  • 0

Yet another data structure doubt. I will get straight to it.
This is what I have

use strict;
use warnings;
use Data::Dumper;

my $head= undef;
my $tail=\$head;

open FILE, "<datastored.txt" or die $!;

while (<FILE>){
    my $node = {
                "data" => $_ , 
                "next" => undef
            };
    $$tail=$node; 
    $tail = \${$node->{"next"}}; 
};

# #1# Print full list #
print Dumper $head;

# #2# Delete the first node and display data of next node #
$head = $head->{next};
my $value = $head->{data};

and this is the output I get

$VAR1 = {
          'next' => \{
                        'next' => \{
                                      'next' => \{
                                                    'next' => \undef,
                                                    'data' => 'line 4'
                                                  },
                                      'data' => 'line 3
'
                                    },
                        'data' => 'line 2
'
                      },
          'data' => 'line 1
'
        };
Not a HASH reference at linkedlist.pl line 32, <FILE> line 4. **<<<< My Problem and hence my question?** 

Note – the content of the file datastored.txt is simply

line 1
line 2
line 3
line 4

If I look at the print result of $head initially, it clearly is a hash within a hash and so on, so why is that after deleting the first node is the integrity of the data structure hampered? (See Error on last line of output)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T18:31:33+00:00Added an answer on June 5, 2026 at 6:31 pm

    Perl references are tricky. The dumper output notation \{ is showing that the {next} fields contain references to references to hashes.

    The offending line is the update to tail. Try

    $tail = \$node->{"next"}; 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I guess this question will sound familiar, but I am yet another programmer baffled
Hi coders I have yet another question involving data binding in winforms. I set
So I have yet another problem, I am trying to get an AJAX script
In a quick-and-dirty Perl script, I have a data structure like this: $tax_revenue{YEAR}{STATE}{GOVLEV}{TAX} =
I have yet another issue which the answer is eluding me. I wish to
After getting a helpful answer here , I have run into yet another problem:
Yet another IE is doing something different from other browsers question but this is
I have several CSV files in this format, named n-data.csv where n is the
Back again with yet another DirectSound question, this one regarding the ways DirectSound Buffers
Yet another newbie with ASP.NET MVC! All I intend to do is for a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.