vote up 2 vote down star
1

I'm trying to come up with with shortest C function (including spaces, any macros that are substituted into it) possible that is passed a NULL-terminated string and returns the number of spaces in that string. This is what I've got so far:

int n(char*l){return*l?!(*l-32)+n(++l):0;}

Which is 42 characters long. Any improvements?

flag
10  
Improving on 42? Could it get better than that? :) – Guffa Aug 12 at 0:07
2  
Is the ultimate question: "How many characters is the shortest function to compute the number of spaces in a C string?" ? – David Claridge Aug 12 at 0:57
I just hope your not putting this into production code that someone else will have to try to decipher. – Lucas McCoy Aug 12 at 2:33
Depends on what "someone else" did to him in the first place… – Ölbaum Aug 29 at 22:37
Same issue as in the accepted answer: You access l twice between two sequence points, while one is a write access. That's undefined behavior. You can change ++l to l+1 to solve that (and still be at 42 characters, of course xD) – Johannes Schaub - litb Aug 30 at 1:16

8 Answers

vote up 6 vote down check

38 characters:

n(char*l){return*l?!(*l-32)+n(++l):0;}

In c, the int return type declaration is superfluous.

link|flag
Aren't the semicolon for separating statments, so that you can remove it after the last statement? – Guffa Aug 12 at 0:11
The semicolon primarily terminates, secondarily separates--so no, you can't remove it. – Ben M Aug 12 at 0:17
3  
In c89, the int type is superfluous, but c99 requires a return type. – Chris Lutz Aug 12 at 0:23
2  
The OP didn't state a version of C :) – Johannes Rössel Aug 12 at 0:25
Nice one, 38 chars! Anything else I could've done more concisely? Or a completely different approach? – David Claridge Aug 12 at 0:30
show 4 more comments
vote up 0 vote down
#define meh return*l?!(*l-32)+n(++l):0

int n(char *l){meh;}

18 characters :P

link|flag
1  
Most code-golfs include `#define`s and preprocessor directives as part of the solution. – Chris Lutz Aug 12 at 0:46
1  
I'd call that 38 + 19 = 57 characters If you allow #define's to be uncounted, there's nothing stopping you from #defining the entire function. – David Claridge Aug 12 at 0:55
I wasn't aware that #define constructs were functions; being as the op stated "I'm trying to come up with with shortest C function possible". Apologies and thanks :) – kakon Aug 12 at 2:04
#defines aren't functions, but their code is essentially directly copy-pasted in place of the macro by the preprocessor before compilation. – Nick Lewis Aug 13 at 0:00
vote up 1 vote down

40 - unfortunately, using (char*)1 as sentinel

m(l){return l-1?1+n(strchr(l,32)+1):-1;}
link|flag
A nice solution if you're allowed to use library functions. :) – David Claridge Aug 12 at 0:56
Should the 'n' at 'n(strchr(l,32)+1)' be 'm'? – Jonathan Leffler Aug 29 at 21:47
lol ur right – Adrian Panasiuk Aug 29 at 22:03
vote up -1 vote down

#define foo int n(char* x){return x?!(l-32)+n(++l):0

foo;}

  • 5 characters
link|flag
vote up 1 vote down

Obviously it's just for fun, so why limit it to C? :-)

APL

∇n x
1⊥x=' '
∇

For everybody who thinks APL is hard to read, note that you can convert this almost directly to longhand (i.e., Python):

def n(x):
    return sum(i==' ' for i in x)

Just say "del" instead of "def" and you're halfway there!

link|flag
+1 for APL – I. J. Kennedy Sep 9 at 4:04
vote up 1 vote down

Haskell:

n=length.filter(==' ')
link|flag
1  
Python. s.count(' ') – David Claridge Sep 22 at 5:31
vote up 0 vote down

Clojure - 31 chars.

(def c #(count(re-seq #"\s"%)))

Exploded:

(defn count-spaces
  [astr] (count
           (re-seq #"\s" astr)))

count returns the number of items in the sequence, which, in this case, is the number of matches to the regex.

link|flag
vote up 0 vote down

Golfscript - 10 chars

{" "/,(}:f

Here is the equivalent in python (Yes this is obviously not as short as using .count(' '))

f=lambda s:len(s.split(" "))-1

Iterating through the input counting spaces is one byte longer

{{32=},,}:f
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.