কে ও আর সি - 188 196 199 229 টি অক্ষর
ফাংশন নির্দিষ্ট করার জন্য স্পেকটি পরিবর্তিত হয়ে আমি গণনা ছাড়াই প্রচুর সি ওভারহেড পেতে পারি। এছাড়াও স্ট্রাইওয়েডসের সিলেবল কাউন্টিং হ্যাক ব্যবহার করতে পরিবর্তন করা যা আমার ফর্মুলার টুইঙ্কের চেয়ে ভাল এবং শব্দের অতিরিক্ত গণনার মোকাবেলায় প্রসারিত।
স্বরলিপি সনাক্তকরণের জন্য আমি একটি ছোট্ট উপায় খুঁজে পাওয়ার পরে যা দুঃখের সাথে ভিত্তি করে তৈরি হয়েছিল stdchr
, আমি বিরক্তিকর হওয়ার দরকার পড়েনি এমন বিট-টুইডলিং ঘৃণা থেকে আমি আরও কয়েক বার গ্রাস করার উত্সাহ পেয়েছিলাম।
d,a,v,s,t,w;float R(char*c){for(;*c;++c){s+=*c=='.';if(isalpha(*c)){
w+=!a++;d=(*c&30)>>1;if(*c&1&(d==7|((!(d&1))&(d<6|d>8)))){t+=!v++;}
else v=0;}else v=a=0;}return 206.835-1.*w/s-82.*t/w;}
এখানে যুক্তি একটি সরল রাষ্ট্রীয় যন্ত্র। এটি বাক্যগুলিকে কেবল পিরিয়ড অনুসারে গণনা করে, বর্ণানুক্রমিক অক্ষরের স্ট্রিং দ্বারা শব্দ এবং শব্দের সাথে স্বরগুলির স্ট্রিং (y সহ) যুক্ত হয়।
সঠিক পরিসংখ্যানগুলির সাথে এটি প্রকাশ করার জন্য আমাকে ধ্রুবকগুলিকে কিছুটা ডুডল করতে হয়েছিল, তবে আমি স্ট্রাইগয়েডদের একটি নির্দিষ্ট ভগ্নাংশের দ্বারা কেবলমাত্র সিলেবলকে আন্ডারকাউন্ট করার কৌশল ধার করেছি।
মন্তব্য এবং কিছু ডিবাগিং সরঞ্জাম সহ আন-গল্ফড :
#include <stdlib.h>
#include <stdio.h>
d,a,/*last character was alphabetic */
v,/*lastcharacter was a vowel */
s, /* sentences counted by periods */
t, /* syllables counted by non-consequtive vowels */
w; /* words counted by non-letters after letters */
float R/*eadability*/(char*c){
for(;*c;++c){
s+=*c=='.';
if(isalpha(*c)){ /* a letter might mark the start of a word or a
vowel string */
w+=!a++; /* It is only the start of a word if the last character
wasn't a letter */
/* Extract the four bits of the character that matter in determining
* vowelness because a vowel might mark a syllable */
d=(*c&30)>>1;
if( *c&1 & ( d==7 | ( (!(d&1)) & (d<6|d>8) ) )
) { /* These bits 7 or even and not 6, 8 make for a
vowel */
printf("Vowel: '%c' (mangled as %d [0x%x]) counts:%d\n",*c,d,d,!v);
t+=!v++;
} else v=0; /* Not a vowel so set the vowel flag to zero */
}else v=a=0; /* this input not alphabetic, so set both the
alphabet and vowel flags to zero... */
}
printf("Syllables: %3i\n",t);
printf("Words: %3i (t/w) = %f\n",w,(1.0*t/w));
printf("Sentences: %3i (w/s) = %f\n",s,(1.0*w/s));
/* Constants tweaked here due to bad counting behavior ...
* were: 1.015 84.6 */
return 206.835-1. *w/s-82. *t/w;
}
main(c){
int i=0,n=100;
char*buf=malloc(n);
/* Suck in the whole input at once, using a dynamic array for staorage */
while((c=getc(stdin))!=-1){
if(i==n-1){ /* Leave room for the termination */
n*=1.4;
buf=realloc(buf,n);
printf("Reallocated to %d\n",n);
}
buf[i++]=c;
printf("%c %c\n",c,buf[i-1]);
}
/* Be sure the string is terminated */
buf[i]=0;
printf("'%s'\n",buf);
printf("%f\n",R/*eadability*/(buf));
}
আউটপুট: (দীর্ঘ সংস্করণ থেকে স্ক্যাফোল্ড ব্যবহার করে তবে গল্ফযুক্ত ফাংশন))
$ gcc readability_golf.c
readability_golf.c:1: warning: data definition has no type or storage class
$ ./a.out < readability1.txt
'I would not, could not, in the rain.
Not in the dark, not on a train.
Not in a car, not in a tree.
I do not like them, Sam, you see.
Not in a house, not in a box.
Not with a mouse, not with a fox.
I will not eat them here or there.
I do not like them anywhere!
'
104.074631
$ ./a.out < readability2.txt
'It was a bright cold day in April, and the clocks were striking thirteen.
Winston Smith, his chin nuzzled into his breast in an effort to escape
the vile wind, slipped quickly through the glass doors of Victory Mansions,
though not quickly enough to prevent a swirl of gritty dust from entering
along with him.
'
63.044090
$ ./a.out < readability3.txt
'When in the Course of human events, it becomes necessary for one people to
dissolve the political bands which have connected them with another, and to
assume among the powers of the earth, the separate and equal station to
which the Laws of Nature and of Nature's God entitle them, a decent respect
to the opinions of mankind requires that they should declare the causes
which impel them to the separation.
'
-1.831667
ঘাটতি:
- বাক্য গণনা যুক্তিটি ভুল, তবে আমি এটির সাথে দূরে চলে যাই কারণ কেবলমাত্র ইনপুটগুলির একটিতে একটি
!
বা একটি রয়েছে ?
।
- শব্দ গণনা যুক্তি সংকোচন দুটি শব্দ হিসাবে বিবেচনা করবে।
- উচ্চারণযোগ্য গণনা যুক্তি সেই একই সংকোচনের সাথে একটি সংলাপ হিসাবে বিবেচনা করবে। তবে সম্ভবত গড়ে ওভারকাউন্টগুলি (উদাহরণস্বরূপ
there
দুটি হিসাবে গণনা করা হয় এবং শেষ হওয়া অনেক শব্দকে e
একটি খুব বেশি গণনা করা হবে), সুতরাং আমি 96.9% সংশোধনের একটি ধ্রুবক ফ্যাক্টর প্রয়োগ করেছি।
- একটি ASCII অক্ষর সেট ধরে।
- আমি বিশ্বাস করি স্বর সনাক্তকরণ স্বীকার করবে
[
এবং {
যা স্পষ্টভাবে সঠিক নয়।
- কেএন্ডআর শব্দার্থবিজ্ঞানের উপর প্রচুর নির্ভরতা এটিকে অশুভ করে তোলে, তবে ওহে, এটি কোড গল্ফ।
দেখার বিষয়:
আমি পার্লটিকে পিছনে নিলেও আমি এখানে অজগর উভয়ের সমাধানের (মুহূর্তে) এগিয়ে আছি।
স্বর সনাক্তকরণের জন্য আমি যে ভয়াবহ কাজটি করেছি তার একটি ভার পান। আপনি বাইনারি ASCII উপস্থাপনাগুলি লিখুন এবং দীর্ঘ সংস্করণে মন্তব্যটি পড়লে এটি কিছুটা অর্থপূর্ণ হয়।