Instruction
stringlengths
45
106
input_code
stringlengths
1
13.7k
output_code
stringlengths
1
13.7k
Change the programming language of this snippet from Elixir to VB without modifying what it does.
defmodule Priority do def create, do: :gb_trees.empty def insert( element, priority, queue ), do: :gb_trees.enter( priority, element, queue ) def peek( queue ) do {_priority, element, _new_queue} = :gb_trees.take_smallest( queue ) element end def task do items = [{3, "Clear drains"}, {4, "F...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Change the programming language of this snippet from Elixir to VB without modifying what it does.
defmodule Priority do def create, do: :gb_trees.empty def insert( element, priority, queue ), do: :gb_trees.enter( priority, element, queue ) def peek( queue ) do {_priority, element, _new_queue} = :gb_trees.take_smallest( queue ) element end def task do items = [{3, "Clear drains"}, {4, "F...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Change the programming language of this snippet from Elixir to Go without modifying what it does.
defmodule Priority do def create, do: :gb_trees.empty def insert( element, priority, queue ), do: :gb_trees.enter( priority, element, queue ) def peek( queue ) do {_priority, element, _new_queue} = :gb_trees.take_smallest( queue ) element end def task do items = [{3, "Clear drains"}, {4, "F...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Generate a Go translation of this Elixir snippet without changing its computational steps.
defmodule Priority do def create, do: :gb_trees.empty def insert( element, priority, queue ), do: :gb_trees.enter( priority, element, queue ) def peek( queue ) do {_priority, element, _new_queue} = :gb_trees.take_smallest( queue ) element end def task do items = [{3, "Clear drains"}, {4, "F...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Generate a C translation of this Erlang snippet without changing its computational steps.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Rewrite the snippet below in C so it works the same as the original Erlang code.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Port the following code from Erlang to C# with equivalent syntax and logic.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Generate an equivalent C# version of this Erlang code.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Port the following code from Erlang to C++ with equivalent syntax and logic.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Change the programming language of this snippet from Erlang to C++ without modifying what it does.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Produce a language-to-language conversion: from Erlang to Java, same semantics.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Port the provided Erlang code into Java while preserving the original functionality.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Keep all operations the same but rewrite the snippet in Python.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Produce a language-to-language conversion: from Erlang to Python, same semantics.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Convert this Erlang block to VB, preserving its control flow and logic.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Maintain the same structure and functionality when rewriting this code in VB.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Convert this Erlang snippet to Go and keep its semantics consistent.
-module( priority_queue ). -export( [create/0, insert/3, peek/1, task/0, top/1] ). create() -> gb_trees:empty(). insert( Element, Priority, Queue ) -> gb_trees:enter( Priority, Element, Queue ). peek( Queue ) -> {_Priority, Element, _New_queue} = gb_trees:take_smallest( Queue ), Element. task() -> Items = [{...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Write the same algorithm in C as shown in this F# implementation.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Convert this F# snippet to C and keep its semantics consistent.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Port the following code from F# to C# with equivalent syntax and logic.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Convert this F# snippet to C# and keep its semantics consistent.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Write a version of this F# function in C++ with identical behavior.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Port the provided F# code into C++ while preserving the original functionality.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Translate this program into Java but keep the logic exactly as in F#.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Produce a language-to-language conversion: from F# to Java, same semantics.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Transform the following F# implementation into Python, maintaining the same output and logic.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Translate the given F# code snippet into Python without altering its behavior.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Transform the following F# implementation into VB, maintaining the same output and logic.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Please provide an equivalent version of this F# code in VB.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Convert this F# snippet to Go and keep its semantics consistent.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Write a version of this F# function in Go with identical behavior.
[<RequireQualifiedAccess>] module PriorityQ = type 'a treeElement = struct val k:uint32 val v:'a new(k,v) = { k=k;v=v } end type 'a tree = Node of uint32 * 'a treeElement * 'a tree list type 'a heap = 'a tree list [<CompilationRepresentation(CompilationRepresentationFlags.UseNullAsTrueValue)>] [<NoEquali...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Generate an equivalent C version of this Factor code.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Translate the given Factor code snippet into C without altering its behavior.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Generate an equivalent C# version of this Factor code.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Change the following Factor code into C# without altering its purpose.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Keep all operations the same but rewrite the snippet in C++.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Produce a functionally identical C++ code for the snippet given in Factor.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Maintain the same structure and functionality when rewriting this code in Java.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Transform the following Factor implementation into Java, maintaining the same output and logic.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Generate an equivalent Python version of this Factor code.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Convert the following code from Factor to Python, ensuring the logic remains intact.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Produce a functionally identical VB code for the snippet given in Factor.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Maintain the same structure and functionality when rewriting this code in VB.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Generate an equivalent Go version of this Factor code.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Change the following Factor code into Go without altering its purpose.
<min-heap> [ { { 3 "Clear drains" } { 4 "Feed cat" } { 5 "Make tea" } { 1 "Solve RC tasks" } { 2 "Tax return" } } swap heap-push-all ] [ [ print ] slurp-heap ] bi
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Produce a language-to-language conversion: from Forth to C, same semantics.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Preserve the algorithm and functionality while converting the code from Forth to C.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Convert this Forth snippet to C# and keep its semantics consistent.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Can you help me rewrite this code in C# instead of Forth, keeping it the same logically?
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Translate this program into C++ but keep the logic exactly as in Forth.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Please provide an equivalent version of this Forth code in C++.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Maintain the same structure and functionality when rewriting this code in Java.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Rewrite the snippet below in Java so it works the same as the original Forth code.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Transform the following Forth implementation into Python, maintaining the same output and logic.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Preserve the algorithm and functionality while converting the code from Forth to Python.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Preserve the algorithm and functionality while converting the code from Forth to VB.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Transform the following Forth implementation into VB, maintaining the same output and logic.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Convert the following code from Forth to Go, ensuring the logic remains intact.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Translate this program into Go but keep the logic exactly as in Forth.
#! /usr/bin/gforth 10 CONSTANT INITIAL-CAPACITY : new-queue 2 INITIAL-CAPACITY 3 * + cells allocate throw INITIAL-CAPACITY over ! 0 over cell + ! ; : delete-queue free throw ; : queue-capacity @ ; : queue-size cell + @ ; : resize-queue dup queue-capacity 2 * dup >r 3 * 2 + ce...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Produce a language-to-language conversion: from Fortran to C#, same semantics.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Convert the following code from Fortran to C#, ensuring the logic remains intact.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Generate an equivalent C++ version of this Fortran code.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Rewrite the snippet below in C++ so it works the same as the original Fortran code.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Convert the following code from Fortran to C, ensuring the logic remains intact.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Rewrite this program in C while keeping its functionality equivalent to the Fortran version.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Rewrite this program in Java while keeping its functionality equivalent to the Fortran version.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Change the following Fortran code into Java without altering its purpose.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Produce a functionally identical Python code for the snippet given in Fortran.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Change the programming language of this snippet from Fortran to Python without modifying what it does.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Translate this program into VB but keep the logic exactly as in Fortran.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Convert the following code from Fortran to VB, ensuring the logic remains intact.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Preserve the algorithm and functionality while converting the code from Fortran to PHP.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
<?php $pq = new SplPriorityQueue; $pq->insert('Clear drains', 3); $pq->insert('Feed cat', 4); $pq->insert('Make tea', 5); $pq->insert('Solve RC tasks', 1); $pq->insert('Tax return', 2); $pq->setExtractFlags(SplPriorityQueue::EXTR_BOTH); while (!$pq->isEmpty()) { print_r($pq->extract()); } ?>
Transform the following Fortran implementation into PHP, maintaining the same output and logic.
module priority_queue_mod implicit none type node character (len=100) :: task integer :: priority end type type queue type(node), allocatable :: buf(:) integer :: n = 0 contains procedure :: top procedure :: enqueue procedure :: siftdown end type co...
<?php $pq = new SplPriorityQueue; $pq->insert('Clear drains', 3); $pq->insert('Feed cat', 4); $pq->insert('Make tea', 5); $pq->insert('Solve RC tasks', 1); $pq->insert('Tax return', 2); $pq->setExtractFlags(SplPriorityQueue::EXTR_BOTH); while (!$pq->isEmpty()) { print_r($pq->extract()); } ?>
Write a version of this Groovy function in C with identical behavior.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Can you help me rewrite this code in C instead of Groovy, keeping it the same logically?
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Generate an equivalent C# version of this Groovy code.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Ensure the translated C# code behaves exactly like the original Groovy snippet.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Generate a C++ translation of this Groovy snippet without changing its computational steps.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Translate the given Groovy code snippet into C++ without altering its behavior.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Write the same code in Java as shown below in Groovy.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Preserve the algorithm and functionality while converting the code from Groovy to Java.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Generate a Python translation of this Groovy snippet without changing its computational steps.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Can you help me rewrite this code in Python instead of Groovy, keeping it the same logically?
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Produce a language-to-language conversion: from Groovy to VB, same semantics.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Convert the following code from Groovy to VB, ensuring the logic remains intact.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Transform the following Groovy implementation into Go, maintaining the same output and logic.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Transform the following Groovy implementation into Go, maintaining the same output and logic.
import groovy.transform.Canonical @Canonical class Task implements Comparable<Task> { int priority String name int compareTo(Task o) { priority <=> o?.priority } } new PriorityQueue<Task>().with { add new Task(priority: 3, name: 'Clear drains') add new Task(priority: 4, name: 'Feed cat') add n...
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...
Write the same code in C as shown below in Haskell.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Translate the given Haskell code snippet into C without altering its behavior.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
#include <stdio.h> #include <stdlib.h> typedef struct { int priority; char *data; } node_t; typedef struct { node_t *nodes; int len; int size; } heap_t; void push (heap_t *h, int priority, char *data) { if (h->len + 1 >= h->size) { h->size = h->size ? h->size * 2 : 4; h->nodes...
Generate a C# translation of this Haskell snippet without changing its computational steps.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Port the provided Haskell code into C# while preserving the original functionality.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
using System; using System.Collections.Generic; namespace PriorityQueueExample { class Program { static void Main(string[] args) { var p = new PriorityQueue<string, int>(); p.Enqueue("Clear drains", 3); p.Enqueue("Feed cat", 4); p.Enqueue("Make tea", 5); p.Enqueue("Solve RC tasks", 1); p.En...
Rewrite the snippet below in C++ so it works the same as the original Haskell code.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Transform the following Haskell implementation into C++, maintaining the same output and logic.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
#include <iostream> #include <string> #include <queue> #include <utility> int main() { std::priority_queue<std::pair<int, std::string> > pq; pq.push(std::make_pair(3, "Clear drains")); pq.push(std::make_pair(4, "Feed cat")); pq.push(std::make_pair(5, "Make tea")); pq.push(std::make_pair(1, "Solve RC tasks"))...
Convert the following code from Haskell to Java, ensuring the logic remains intact.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Rewrite this program in Java while keeping its functionality equivalent to the Haskell version.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
import java.util.PriorityQueue; class Task implements Comparable<Task> { final int priority; final String name; public Task(int p, String n) { priority = p; name = n; } public String toString() { return priority + ", " + name; } public int compareTo(Task other) { ...
Translate the given Haskell code snippet into Python without altering its behavior.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Maintain the same structure and functionality when rewriting this code in Python.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
>>> import queue >>> pq = queue.PriorityQueue() >>> for item in ((3, "Clear drains"), (4, "Feed cat"), (5, "Make tea"), (1, "Solve RC tasks"), (2, "Tax return")): pq.put(item) >>> while not pq.empty(): print(pq.get_nowait()) (1, 'Solve RC tasks') (2, 'Tax return') (3, 'Clear drains') (4, 'Feed cat') (5, 'Ma...
Convert this Haskell snippet to VB and keep its semantics consistent.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Generate an equivalent VB version of this Haskell code.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
Type Tuple Priority As Integer Data As String End Type Dim a() As Tuple Dim n As Integer Private Function Left(i As Integer) As Integer Left = 2 * i + 1 End Function Private Function Right(i As Integer) As Integer Right = 2 * i + 2 End Function Private Function Parent(i As Integer) As Integer Paren...
Rewrite this program in Go while keeping its functionality equivalent to the Haskell version.
import Data.PQueue.Prio.Min main = print (toList (fromList [(3, "Clear drains"),(4, "Feed cat"),(5, "Make tea"),(1, "Solve RC tasks"), (2, "Tax return")]))
package main import ( "fmt" "container/heap" ) type Task struct { priority int name string } type TaskPQ []Task func (self TaskPQ) Len() int { return len(self) } func (self TaskPQ) Less(i, j int) bool { return self[i].priority < self[j].priority } func (self TaskPQ) Swap(i, j int) { self[i],...