Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

40
votes
2answers
944 views

LogLog algorithm for counting of large cardinalities

Where can I find a valid implementation of LogLog algorithm? Have tried to implement it by myself but my draft implementation yields strange results. Here it is: function LogLog(max_error, ...
13
votes
5answers
7k views

python histogram one-liner

there are many ways, how to code histogram in Python. by histogram, i mean function, counting objects in an interable, resulting in the count table (i.e. dict). e.g.: >>> L = 'abracadabra' ...
11
votes
17answers
952 views

Code Golf 4th of July Edition: Counting Top Ten Occurring Words

Given the following list of presidents do a top ten word count in the smallest program possible: INPUT FILE Washington Washington Adams Jefferson Jefferson Madison ...
10
votes
0answers
176 views

Counting (Number theory / Factors) [migrated]

so I'm stuck with this counting problem which goes like this: I've an expression: T = (N!) * (N!) / D where, D ∈[ 1 - N! ] i.e. D takes all values from 1 to N! and I've to count the number ...
8
votes
4answers
285 views

Python - find the item with maximum occurrences

In Python, I have a list L = [1, 2, 45, 55, 5, 4, 4, 4, 4, 4, 4, 5456, 56, 6, 7, 67] I want to figure out the number which occurred the maximum number of times. I am able to solve it but I need ...
7
votes
7answers
4k views

item frequency count in python

I'm a python newbie, so maybe my question is very noob. Assume I have a list of words, and I want to find the number of times each word appears in that list. Obvious way to do this is: words = "apple ...
6
votes
6answers
383 views

Counting digits using while loop

I was recently making a program which needed to check the number of digits in a number inputted by the user. As a result I made the following code: int x; cout << "Enter a number: "; cin ...
5
votes
10answers
352 views

Finding the number of digits of an integer

What is the best method to find the number of digits of a positive integer? I have found this 3 basic methods: conversion to string String s = new Integer(t).toString(); int len = s.length(); ...
5
votes
3answers
170 views

Combinatorics or another approach? [closed]

I've recently read this problem, first, I thought of a combinatorial approach, but it seems nobody - along the contestants - has submitted such a solution. Is a solution using combinatorics possible? ...
5
votes
9answers
7k views

How do I count the characters, words, and lines in a file, using Perl?

What is a good/best way to count the number of characters, words, and lines of a text file using Perl (without using wc)?
5
votes
9answers
9k views

Counting the number of occurrences of words in a textfile

How could I go about keeping track of the number of times a word appears in a textfile? I would like to do this for every word. For example, if the input is something like: "the man said hi to the ...
4
votes
3answers
214 views

Counting digit occurrences

This problem is really confusing me; we're given two integers A, B, we want to count occurrences of digits in the range [A, B]. I though that if we could count the number of digit occurrences in the ...
4
votes
4answers
238 views

Getting the most frequent items without counting every item

I was wondering if there was an algorithm for counting "most frequent items" without having to keep a count of each item? For example, let's say I was a search engine and wanted to keep track of the ...
4
votes
3answers
804 views

Alternatives to GCC's new atomic integer operations

GCC's recent support for atomic operations (as described here) is great, and is 90% of what we need. Unfortunately, some of our products still need to run on Windows and so we need atomic integer ...
3
votes
4answers
213 views

Haskell Inserstion sort count

My problem is to turn this: iSort :: Ord a => [a] -> [a] iSort [] = [] iSort (x:xs) = ins x (iSort xs) ins x [] = [x] ins x (y:ys) | x <= y = x : y : ys | otherwise = y : ins ...
3
votes
1answer
1k views

Difference between retain and copy?

What exqctly is the difference between retain and copy? what is its significance on reference counting? I know that when an object is allocated using alloc/retain, reference count goes up by one. so ...
3
votes
4answers
454 views

Counting solutions to linear inequalities

I am trying to solve a problem which I have reduced down to counting the number of integer solutions to a number of linear inequalities. I need to be able to count the number of solutions for any ...
3
votes
2answers
2k views

How do you calculate the total number of all possible unique subsets from a set with repeats?

Given a set** S containing duplicate elements, how can one determine the total number all the possible subsets of S, where each subset is unique. For example, say S = {A, B, B} and let K be the set ...
3
votes
3answers
666 views

Basic Pixel/Cell Counting Algorithm

Good night :) I am currently playing with the DevIL library that allows me to load in image and check RGB values per pixel. Just as a personal learning project, I'm trying to write a very basic OCR ...
2
votes
1answer
52 views

Faster way of counting total number of columns in a cassandra row with hector

I want to count the total number of columns for a Cassandra row using Hector client. Currently I am doing this with a CountQuery, but it seems really slow to me. Also for a row, with just 60k columns ...
2
votes
1answer
34 views

Counting and multiple grouping in many-to-many MySQL table

I'm wondering all day and I cant get it done. I have a simple test table with news system as example. We have news, tags, and categories. News can have many tags and one category. What I need is to ...
2
votes
3answers
337 views

Google Interview Puzzle [closed]

Given n dice, each of 'a' sides and a sum b, return the number of ways in which the sum b can be obtained. How can you reduce the time complexity and space complexity? This was asked in a Google ...
2
votes
1answer
48 views

Counting and Totals

I have a list of numbers that are inputted by users. I want to count them and get: Subtotals for each number (only numbers possible are 1, 2, 3, 4, 5), and a total of all inputted numbers. See: ...
2
votes
1answer
26 views

Special cases of SAT and corresponding #SAT with complexity a most O(n^2) AND that have efficient algorithms for generating instances?

I am interested in learning about special cases of boolean satisfiability problems that are known to be polynomial (or more realistically, O(N^2)). These cases should also have efficient algorithm for ...
2
votes
3answers
521 views

Counting regex pattern matches in one line using sed or grep?

I want to count the number of matches there is on one single line (or all lines as there always will be only one line). I want to count not just one match per line as in echo "123 123 123" | grep -c ...
2
votes
5answers
711 views

Counting occurrences of letter in a file

I'm trying to count the number of times each letter appears in a file. When I run the code below it counts "Z" twice. Can anyone explain why? The test data is: abcdefghijklmnopqrstuvwxyz ...
2
votes
2answers
621 views

NSSortDescriptor can't count numbers at all

With this NSSortDescriptor *lessonDescriptor = [[NSSortDescriptor alloc] initWithKey:@"lesson" ascending:YES]; [resultArray sortUsingDescriptors:[NSArray arrayWithObject:lessonDescriptor]]; ...
2
votes
5answers
260 views

select count(*) vs keep a counter

Assuming indexes are put in place, and absolute-count-accuracy is not necessary (it's okay to be off by one or two), is it okay to use: Option A select count(*) from Table where Property = ...
2
votes
1answer
98 views

Counting distinct items in XSLT

I have XML like this: <assessment> <variables> <variable> <attributes> <variable_name value="FRED"/> </attributes> </variable> ...
2
votes
2answers
359 views

Counting problem C#

I've a bit of a problem. I'm adding numbers to ArrayList like 156, 340 (when it is TransferIn or Buy) etc and then i remove them doing it like 156, 340 (when it's TransferOut, Sell). Following ...
2
votes
3answers
1k views

using javascript, how can I count a mix of asian characters and english words

I need to take a string of mixed Asian characters (for now, assume only Chinese kanji or Japanese kanji/hiragana/katakana) and "Alphanumeric" (i.e., Enlgish, French), and count it in the following ...
2
votes
5answers
4k views

Reference Counting in C++

I'm implementing a math library in C++. The library will be compiled to a DLL so those who use it will only need the header files the classes' definitions. The users of my classes will be people who ...
2
votes
5answers
479 views

Search Engines Inexact Counting (about xxx results)

When you search in Google (i'm almost sure that Altavista did the same thing) it says "Results 1-10 of about xxxx"... This has always amazed me... What does it mean "about"? How can they count ...
1
vote
2answers
48 views

Gematria with a list of words

I am new at programming. I am trying to match a number (given by the user) to the numeric values of words in a file. Example a=1. b=2, c=3, A=1, B=2, so that if the user enters "2" then the output ...
1
vote
1answer
56 views

Json string results number counting with JavaScript

I got this json string { "ResultSet": { "version": "1.0", "Error": 0, "ErrorMessage": "No error", "Locale": "us_US", "Quality": 40, "Found": 2, ...
1
vote
3answers
128 views

Perl array syntax

I have files with 1e8 numbers in them ranging in size from 1 to 999. I need to read through each file and save a report of how many of each number were found in each file. I thought that setting up ...
1
vote
2answers
102 views

Keeping count in recursive function

I'm trying to figure out how to write a recursive function (with only one parameter) that returns the number of times the substring “ou” appears in the string. Where I'm confused at is that I'm not ...
1
vote
1answer
38 views

Counting how many times a value appeared

I am using SELECT DISTINCT name FROM table to get a table with distinct names that appear in the column. How can i get an extra column returning the number of times that this specific name have ...
1
vote
5answers
144 views

JavaScript problem by calculating lenght of a string

Why when I try this block of code: var str = "1234"; alert(str.toString().lenght); it alerts me 'undefined' ?
1
vote
3answers
323 views

XSLT 2.0 - Nesting Elements In Output From Non-Nested Input

I'm working on a style sheet that outputs in a hierarchical from an input file with none. Every element of the input file is a sibling of one another, and each "header" element denotes a different ...
1
vote
3answers
107 views

realtime statistics script

I'm sure you know the case in which gmail shows the free storage on the "Lots of space" paragraph when you are on the login page. There is a counter running on that page and I'm curious to know how it ...
1
vote
3answers
77 views

Is there a limit to the base to which numbers can be associated to?

This may be very convoluted and twisted idea. Got it while learning some JavaScript. It piqued my mind. Hoping there may be someone else who would have thought about it before or might enlighten me ...
1
vote
4answers
419 views

counting data and grouping by week in mysql

this is my DB table: CREATE TABLE IF NOT EXISTS `inspection_report` ( `Inspection_datetime` datetime NOT NULL, `Line` char(5) NOT NULL, `S` int(11) NOT NULL, `A` int(11) NOT NULL, ...
1
vote
1answer
106 views

keeping count of new items

here is my scenario I have a nested sortable tree simplified looks like this <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title></title> ...
1
vote
3answers
112 views

Counting distinct items in XSLT independent of depth

If I run the following XSLT code: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text"/> <xsl:key name="kValueByVal" ...
1
vote
2answers
195 views

SQL - sub count

SELECT AdviceNo, Registration FROM tblSalesDetail that produces something like ... ADV00001, ABC123 ADV00001, CDE564 ADV00002, FGE432 ADV00003, HUY789 ADV00003, MJS532 ADV00003, JFY428 ...
1
vote
6answers
1k views

Fastest way to count number of bit transitions in an unsigned int

I'm looking for the fastest way of counting the number of bit transitions in an unsigned int. If the int contains: 0b00000000000000000000000000001010 The number of transitions are: 4 If the int ...
0
votes
3answers
92 views

Counting the number of words using C from a text file

Hey I have been trying to count the number of words in my text file, to load up a bunch of words for a Hangman game, from C but I am hitting a brick wall. This piece of code I am using is supposed I ...
0
votes
2answers
47 views

counting 1 word, 2 word and 3 word phrases occurrences in a webpage in C#/.NET

i'm going to write a program that takes a URL and counts the occurrences of EVERY single 1-word, 2-word, and 3-word phrases in the webpage (and possibly x-word phrases). here's the best algorithm i ...
0
votes
1answer
141 views

counting bright pixels and summing them. Medical Image C++

Currently, I'm working on a project in medical engineering. I have a big image with several sub-images of the cell, so my first task is to divide the image. I thought about the next thing: Convert ...

1 2