C, 174 167 152 ไบต์
ฟังก์ชั่นวนซ้ำf
ซึ่งหน่วยความจำรั่ว ( 152 ):
#include"object.h"
size_t f(array_t*a){size_t t=0,i=0;for(;i<array_length(a);i++){object_t*o=array_get_copy(a,i,0);t+=o->type==6?f(o->ary):1;}return t;}
แบบเรียกซ้ำf
ที่ไม่รั่วไหลโดยใช้การอ้างอิงที่167 :
#include"object.h"
size_t f(array_t*a){size_t t=0,i=0;for(;i<array_length(a);i++){object_t**o=array_get_ref(a,i,0);t+=*o->type==t_array?f(*o->ary):1;}return t;}
Ungolfed:
size_t get_recursize (const array_t* const a) {
pfn();
object_failnull(a);
size_t out = 0;
for (size_t i = 0; i < array_length(a); i++) {
object_t** o = array_get_ref(a, i, NULL);
if ( (*o)->type == t_array ) {
out += get_recursize((*o)->ary);
} else {
++out;
}
}
return out;
}
"แต่อย่างไร" คุณถามว่า "สามารถตอบคำถามนี้ใน C ได้ไหมไม่มีอาร์เรย์ที่จัดการใน C และคุณไม่มีอาร์เรย์ที่แตกต่างกันจริงๆ ... ?"
"Aha," I reply, "สำหรับฉันได้ทำงานในระบบ" object "สำหรับ (GNU-ish) C11 และ ISO C ++ 11"
โปรแกรมสาธิตเต็มรูปแบบสำหรับฟังก์ชั่นนี้คือ:
#include "../calc/object/object.h"
size_t get_recursize (const array_t* const a);
define_array_new_fromctype(ssize_t);
int main (void) {
size_t len = 6;
static const ssize_t h[6] = { -1, 3, -5, 7, -9, 11 };
array_t* a = array_new_from_ssize_t_lit(h, len, t_realint);
size_t rsize = get_recursize(a);
printf("Recursive size of a: %zu\n", rsize);
object_t* asobj = object_new(t_array, a);
array_destruct(a);
array_t* b = array_new(NULL, -1);
for (size_t j = 0; j < 10; j++) {
array_append(b, asobj);
}
object_destruct(asobj);
rsize = get_recursize(b);
printf("Recursive size of b: %zu\n", rsize);
asobj = object_new(t_array, b);
array_destruct(b);
array_t* c = array_new(NULL, -1);
for (size_t i = 0; i < 100; i++) {
array_append(c, asobj);
}
object_destruct(asobj);
rsize = get_recursize(c);
printf("Recursive size of c: %zu\n", rsize);
array_destruct(c);
return EXIT_SUCCESS;
}
size_t get_recursize (const array_t* const a) {
pfn();
object_failnull(a);
size_t out = 0;
for (size_t i = 0; i < array_length(a); i++) {
object_t** o = array_get_ref(a, i, NULL);
if ( (*o)->type == t_array ) {
out += get_recursize((*o)->ary);
} else {
++out;
}
}
return out;
}
ตอนนี้มันอยู่ที่นี่และคุณจะต้องซื้อคืนเพื่อใช้สิ่งนี้
คุณจะต้องใช้ไลบรารีแฮช Fowler-Noll-Vo libfnv
ซึ่งรวบรวมไว้สำหรับแพลตฟอร์มของคุณ มันอยู่ในพื้นที่เก็บข้อมูลที่และคุณยังสามารถคว้ามันนี่
cc -DNODEBUG size.c path/to/libfnv.a -o size
จากนั้นคุณสามารถทำได้
การใช้งานไม่จำเป็นต้องมีประสิทธิภาพ:
$ valgrind --leak-check=full --track-origins=yes --show-leak-kinds=all ./size
==24127== Memcheck, a memory error detector
==24127== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==24127== Using Valgrind-3.12.0.SVN and LibVEX; rerun with -h for copyright info
==24127== Command: ./size
==24127==
Recursive size of a: 6
Recursive size of b: 60
Recursive size of c: 6000
==24127==
==24127== HEAP SUMMARY:
==24127== in use at exit: 0 bytes in 0 blocks
==24127== total heap usage: 22,900 allocs, 22,900 frees, 615,584 bytes allocated
==24127==
==24127== All heap blocks were freed -- no leaks are possible
==24127==
==24127== For counts of detected and suppressed errors, rerun with: -v
==24127== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
แต่มันใช้งานได้! การส่งข้อมูลครั้งสุดท้ายไปยังต้นแบบ (ซึ่งโปรแกรมนี้รวบรวมไว้) คือ 2 วันที่ผ่านมาซึ่งหมายความว่าการส่งนี้ถูกต้อง