RogerBW's Blog

Perl Weekly Challenge 49: multiples and LRU cache 22 March 2020

I’ve been doing the Perl Weekly Challenges. The latest was about searching for particular multiples of a number, and implementing a fixed-size cache.

Write a script to accept a positive number as command line argument and print the smallest multiple of the given number consists of digits 0 and 1.

For example:

For given number 55, the smallest multiple is 110 consisting of digits 0 and 1.

The easy way to match multiples seemed to be repeated addition combined with a regexp filter.

foreach my $n (@ARGV) {
  my $t=$n;
  while (1) {
    if ($t =~ /^[01]+$/) {
      print "$t\n";
      last;
    } else {
      $t+=$n;
    }
  }
}

and much the same in Perl6. There might be a clever mathematical way to generate these but one didn't come to mind.

Write a script to demonstrate LRU Cache feature. It should support operations get and set. Accept the capacity of the LRU Cache as command line argument.

Definition of LRU: An access to an item is defined as a get or a set operation of the item. “Least recently used” item is the one with the oldest access time.

For the LRU cache, the basic need is a hash to store the data and a way to determine which entry has been most recently used. There are various possibilities for that combination, but none of them reduces to a pure hash, so I ended up with a plain list, updated by grepping to remove the key of the most-recently-used item and sticking it on the end. Plus lots of the usual Perl5 object sugar packed round it.

One insight: it's easier to add the new item to the cache and then delete the oldest if necessary than to check before adding whether a deletion will be needed.

package Local::LRU;

sub new {
  my $class = shift;
  my $self={};
  $self->{size}=shift || 3;
  $self->{store}={};
  $self->{lru}=[];
  bless $self,$class;
  return $self;
}

sub set {
  my $self=shift;
  my $k=shift;
  my $v=shift;
  $self->{store}{$k}=$v;
  $self->update_lru($k);
  if (scalar @{$self->{lru}} > $self->{size}) {
    delete $self->{store}{$self->{lru}[0]};
    shift @{$self->{lru}};
  }
}

sub get {
  my $self=shift;
  my $k=shift;
  if (exists $self->{store}{$k}) {
    $self->update_lru($k);
    return $self->{store}{$k};
  } else {
    return -1;
  }
}

sub update_lru {
  my $self=shift;
  my $k=shift;
  my @l=grep {$_ != $k} @{$self->{lru}};
  push @l,$k;
  @{$self->{lru}}=@l;
}

Then a basic test harness:

my $q=Local::LRU->new($ARGV[0] || 3);
$q->set(1,3);
$q->set(2,5);
$q->set(3,7);
print $q->get(2)," = 5\n";
print $q->get(1)," = 3\n";
print $q->get(4)," = -1\n";
$q->set(4,9);
print $q->get(3)," = -1\n";

Perl6 has different object sugar, which I haven't used before. It's a bit odd, but on balance quite pleasant to use.

class LRU {
  has Int $.size;
  has %!store;
  has @!lru;

  method set(Int $k, Int $v) {
    %!store{$k}=$v;
    self.update_lru($k);
    if @!lru.elems > $.size {
      %!store{@!lru[0]}:delete;
      @!lru.shift;
    }
  }

  method get(Int $k) {
    if %!store{$k}:exists {
      self.update_lru($k);
      return %!store{$k};
    } else {
      return -1;
    }
  }

  method update_lru(Int $k) {
    my @l=grep {$_ != $k}, @!lru;
    @l.push($k);
    @!lru=@l;
  }
}

my $q=LRU.new(size => (@*ARGS[0] or 3));
$q.set(1,3);
$q.set(2,5);
$q.set(3,7);
print $q.get(2)," = 5\n";
print $q.get(1)," = 3\n";
print $q.get(4)," = -1\n";
$q.set(4,9);
print $q.get(3)," = -1\n";

Comments on this post are now closed. If you have particular grounds for adding a late comment, comment on a more recent post quoting the URL of this one.

Search
Archive
Tags 1920s 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 3d printing action advent of code aeronautics aikakirja anecdote animation anime army astronomy audio audio tech aviation base commerce battletech beer boardgaming book of the week bookmonth chain of command children chris chronicle church of no redeeming virtues cold war comedy computing contemporary cornish smuggler cosmic encounter coup covid-19 crime cthulhu eternal cycling dead of winter doctor who documentary drama driving drone ecchi economics en garde espionage essen 2015 essen 2016 essen 2017 essen 2018 essen 2019 essen 2022 essen 2023 existential risk falklands war fandom fanfic fantasy feminism film firefly first world war flash point flight simulation food garmin drive gazebo genesys geocaching geodata gin gkp gurps gurps 101 gus harpoon historical history horror hugo 2014 hugo 2015 hugo 2016 hugo 2017 hugo 2018 hugo 2019 hugo 2020 hugo 2022 hugo-nebula reread in brief avoid instrumented life javascript julian simpson julie enfield kickstarter kotlin learn to play leaving earth linux liquor lovecraftiana lua mecha men with beards mpd museum music mystery naval noir non-fiction one for the brow opera parody paul temple perl perl weekly challenge photography podcast politics postscript powers prediction privacy project woolsack pyracantha python quantum rail raku ranting raspberry pi reading reading boardgames social real life restaurant reviews romance rpg a day rpgs ruby rust scala science fiction scythe second world war security shipwreck simutrans smartphone south atlantic war squaddies stationery steampunk stuarts suburbia superheroes suspense television the resistance the weekly challenge thirsty meeples thriller tin soldier torg toys trailers travel type 26 type 31 type 45 vietnam war war wargaming weather wives and sweethearts writing about writing x-wing young adult
Special All book reviews, All film reviews
Produced by aikakirja v0.1