Count the number of occurrences of 1 in 0 to 0.1 billion-PHP source code

Source: Internet
Author: User
Count the numbers from 0 to 0.1 billion.

function count_n($limit, $n) {  if ($limit < $n) {    return 0;  }  if ($limit == $n) {    return 1;  }  $power = floor(log10($limit));  $unit = pow(10, $power);  $high = floor($limit / $unit);  $low = $limit % $unit;  return $high * $power * $unit / 10      + (($high > $n)? $unit: (($high == $n)? 1 + $low: 0))      + count_n($low, $n);}echo count_n(100000000, 1); // 80000001

2. [Code]Functions originally written in newLisp
(define (count-n limit n)  (if (< limit n) 0    (= limit n) 1    (letn (high (int ((string limit) 0))           low (int (1 (string limit)))           power (int (log limit 10)))      (+ (count-n low n)         (* high power (pow 10 (- power 1)))         (if (> high n) (pow 10 power)           (= high n) (+ 1 low)           0)))))(println (count-n 100000000 1))

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.