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 891547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:54:31+00:00 2026-05-15T13:54:31+00:00

How do I define a secondary ordering to the Heap::Simple interface in Perl?

  • 0

How do I define a secondary ordering to the Heap::Simple interface in Perl?

  • 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-05-15T13:54:31+00:00Added an answer on May 15, 2026 at 1:54 pm

    The documentation states that the constructor takes a code reference to define
    the order, so you can specify any sort method you like:

    my $heap = Heap::Simple->new(order => \&sort_method);
    

    Every time two keys need to be compared, the given code reference will be called like:
    $less = $code_reference->($key1, $key2);

    This should return a true value if $key1 is smaller than $key2 and a false
    value otherwise. $code_reference should imply a total order relation, so it
    needs to be transitive.

    By “secondary ordering” I assume you mean that a second comparison is used if
    the first one shows the values to be equal. Let’s say the first comparison is
    of values found via the “method1” method, and the second comparison is of
    values from “method2”. So, if by method1 the values are different, return
    that result, and otherwise fall back to method2:

    sub sort_method
    {
        my ($val1, $val2) = @_;
    
        my $result = ($val1->method1 <=> $val2->method1)
                              ||
                     ($val1->method2 <=> $val2->method2);
    
        return 1 if $result == -1;
    }
    

    If method1 and method2 return strings instead of numeric values, simply use
    the cmp operator instead of <=>. You can use anything you like, as long
    as the operator returns the right values. Most sort functions like using the
    values -1, 0 and 1 to indicate whether value1 is less than, equal to, or
    greater than value2, but this module likes 1 to mean val1 < val2, so after
    gathering the -1, 0, 1 result, one then returns 1 if the result is -1 (where
    value1 is less than value2).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

#define BUF_SIZE 10 char *html = foo:baa\r\nxxx:yyyy:\r\nLocation:........................................\r\Connection:close\r\n\r\n; char *p = (char*)html, *buf, *pbuf, *tbuf;
(define (lcs lst1 lst2) (define (except-last-pair list) (if (pair? (cdr list)) (cons (car list)
#define MAX 100 struct bs{ int ab; int ac; }be; struct s{ be b;
#define HISTORY_SIZE 50 #define INPUT_SIZE 512 /*Max input size*/ char input[INPUT_SIZE]; /*Holding user input
#define __HAVE_ARCH_STRCPY What's the meaning of __HAVE_ARCH ? I'm not a native speaker and
I define a tabs using JQuery <div id=tabs> <ul> <li><a href=#tabs-1>Tab 1</a></li> <li><a href=#tabs-2>Tab
Ext.define('DigitalPaper.controller.Documents', { extend: 'Ext.app.Controller', views: ['Documents'], stores: ['Documents'], models: ['Documents'], init: function() { console.log('[OK]
I define a 'block' of text as all lines between start of file, newline
I define HttpClient in 2 different ways: 1. Plain vanilla: client = new DefaultHttpClient();
code: #define f(a,b) a##b #define g(a) #a #define h(a) g(a) main() { printf(%s\n,h(f(1,2))); //[case

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.