[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.c++

Ranking algorithm

Giuliano Bertoletti

10/16/2008 4:52:00 PM

Hello,

I'm looking for a clever way to solve this problem.

Suppose I've been given M > N items, each one with a score associated.
I need to extract the top N items, sorted by score (decreasing order).

The point is that I would typically have M >> N (far greater than) and I
cannot simply store all M items in memory and perform a sort operation.

I need to process items on the fly, as soon as I see them.

My best guess is to use a list and delete items at the end as soon as
its size grows larger than N, but I have a linear time item insertion
(to keep it properly sorted) which I would like to avoid if possible.

Any suggestions ?

Regards,
Giuliano Bertoletti.
10 Answers

ytrembla

10/21/2008 4:00:00 PM

0

In article <48fccfcf$0$18158$4fafbaef@reader3.news.tin.it>,
Giuliano Bertoletti <gbe32241@libero.it> wrote:
>Yannick Tremblay ha scritto:
>> In article <48f775a6$0$41660$4fafbaef@reader4.news.tin.it>,
>
>> Correctly: operator< should return false for two items that have the
>> same score.
>>
>[snip]
>>
>> One of < or > is perfectly sufficient for sorting anything efficiently.
>>
>[snip]
>> Pointless.
>> You are artificially sorting on "name" which is not in your
>> requirements. You may as well just keep the first one found.
>
>No, that was exactly what confused me in the first place and led me to
>ask here.
>
>Suppose I have "Joe" and "Nick" which both score 20.
>
>If I were simply to define the operator as:
>
>bool operator<(const CItem &I) const
>{
> return score < I.score;
>}
>
>then the library would have no way of knowing that "Joe" and "Nick" are
>different items scoring the same and rank them separately.
>
>Since an std::set cannot hold multiple equal items, either "Joe"
>overwrites "Nick" or "Nick" overwrites "Joe" depending on the order in
>which they're seen, eitherway yielding only one player with a score of
>20 in the final rank and that's of course not what I want.

Yes, that's correct with std::set, you need to use std::multiset.
Check the difference while using set vs multiset in asmall sample
program. E.g.:

#include <set>
#include <string>
#include <iostream>

struct Item
{
Item(int valueIn, std::string const nameIn):value(valueIn), name(nameIn) {};
int value;
std::string name;

bool operator<(Item const & rhs) const
{
return value < rhs.value;
}
};

std::ostream & operator<<(std::ostream & outStream, Item const & item )
{
return outStream << "Value = " << item.value << " Name = " << item.name;
}
typedef std::multiset<Item> coll_t;
//typedef std::set<Item> coll_t;

int main()
{

coll_t theSet;
theSet.insert(Item(20, "John20"));
theSet.insert(Item(12, "Alan12"));
theSet.insert(Item(20, "Annie20"));
theSet.insert(Item(10, "Lise10"));
theSet.insert(Item(40, "Isaac40"));
theSet.insert(Item(30, "Steve30"));
theSet.insert(Item(20, "John20"));

for(coll_t::const_iterator it = theSet.begin();
it != theSet.end(); ++it)
{
std::cout << (*it) << std::endl;

}

return 0;
}


With multiset, all Item object are stored, with set, only the first
encountered Item object for a particular value is stored. So multiset
with a normal operator< checking only value would meet your needs.
Just enclose the multiset in a class that compare with the current max and
keep the size of the multiset to the desired size.

Anyway, I'd be insulted if I'd score the same thing as you to be
ranked lower just because my name starts by 'Y'. That's just unfair,
isn't it? :-)


Yannick






Giuliano Bertoletti

10/21/2008 8:57:00 PM

0

Yannick Tremblay ha scritto:

>
> With multiset, all Item object are stored, with set, only the first
> encountered Item object for a particular value is stored. So multiset
> with a normal operator< checking only value would meet your needs.
> Just enclose the multiset in a class that compare with the current max and
> keep the size of the multiset to the desired size.

Unfortunatelly my specific problem cannot be handled with an
std::multiset (the player's score was just an example to explain the
core concept).

Items do actually represent solutions of a large combinatorial problem
and are scored depending on how goood each solution is.

The generating function, which periodically queries the rank, returns
items in an unpredictable order and it's more than likely that I see the
same solution multiple times.

Clearly I wish to rank a particular solution only once, yet I need to
rank each different solution.

With a multiset I would have multiple entries for the same object if
this object is submitted more than once and that's a waste of memory
that I simply cannot afford.

>
> Anyway, I'd be insulted if I'd score the same thing as you to be
> ranked lower just because my name starts by 'Y'. That's just unfair,
> isn't it? :-)
>

Well, my items don't care much about their ranking :-)

Jokes aside, depending on the problem the ranking system may provide a
way to break ties.

For example in a tennis table tournament, if only the first two players
qualify to the next stage, ties are broken checking sets won and set ratios.

Cheers,
Giuliano Bertoletti


















Sid9

9/4/2012 2:01:00 PM

0


"clairbear" <Pathetic=Sid@msn.com> wrote in message
news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
> "Sid9" <sid9@ bellsouth.net> wrote in news:k23qfb$bvs$1@dont-email.me:
>
>>
>> "Loaded Goat" <user@exame.net> wrote in message
>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>> http://csis.org/publication/avoiding-creeping-defeat-afghani...
>>> realistic-assumptions-strategy-and-plans
>>
>> We need to exit Afghanistan in 2013 not in 2014 as planned.
> Yeah cut and run the strategy of cowards like you
>> Then we need to sell small arms to all factions (so they can shoot
>> each other more efficiently)
> Obviously you do not learn from history we gave them arms before and that
> let to a date you in you senility have forgot about 9-11-2001
>> 13 years, 80,000 troops and billions later this war is a waste.
> Your math is flawed 2001 to 2012 is 11 years, idiot
>> Take the money we would have other wise spent there and give it to
>> Americans provided they spend it rather than save it.
> Yeah give away money that worked real great with the porkulus
>> Another Republican war still sour!
> Obviously YOU forgot about 911 you silly senile ass
> SID YOU ARE PATHETIC
>

13 years have elapsed and we are no where in Afghanistan.
bin Laden is dead.... Thank you Seals and President Obama.

Time to pack up and get our 80,000 troops out....save billions and let the
various tribes fight it out among themselves.

Otherwise Clair, put up or shut up.
Propose a TAX that pays for this war.
Make it a "pay as you go" business....and don't forget 60 years of veterans
benefits for our injured troops.

Wars are not free.

clairbear

9/4/2012 7:46:00 PM

0

"Sid9" <sid9@ bellsouth.net> wrote in news:k251id$hfs$1@dont-email.me:

>
> "clairbear" <Pathetic=Sid@msn.com> wrote in message
> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>> "Sid9" <sid9@ bellsouth.net> wrote in
>> news:k23qfb$bvs$1@dont-email.me:
>>
>>>
>>> "Loaded Goat" <user@exame.net> wrote in message
>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>> http://csis.org/publication/avoiding-creeping-defeat-afgha...
>>>> d- realistic-assumptions-strategy-and-plans
>>>
>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>> Yeah cut and run the strategy of cowards like you
>>> Then we need to sell small arms to all factions (so they can shoot
>>> each other more efficiently)
>> Obviously you do not learn from history we gave them arms before and
>> that let to a date you in you senility have forgot about 9-11-2001
>>> 13 years, 80,000 troops and billions later this war is a waste.
>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>> Take the money we would have other wise spent there and give it to
>>> Americans provided they spend it rather than save it.
>> Yeah give away money that worked real great with the porkulus
>>> Another Republican war still sour!
>> Obviously YOU forgot about 911 you silly senile ass
>> SID YOU ARE PATHETIC
>>
>
> 13 years have elapsed and we are no where in Afghanistan.
> bin Laden is dead.... Thank you Seals and President Obama.
Hey stupid learn math US troops have been there less than 11 years navy
seals did kill bin laden not Obama he just took the grandstand for the
seals' work OMG what a horses arse you are!!
> Time to pack up and get our 80,000 troops out....save billions and let
> the various tribes fight it out among themselves.
Variuos tribes fighting it out was what led to 911 You really are
> Otherwise Clair, put up or shut up.
Put up or shut up? What are you talking about FOOL
> Propose a TAX that pays for this war.
I would have to be a member of congress to propse a new tax you silly twit
> Make it a "pay as you go" business....and don't forget 60 years of
> veterans benefits for our injured troops.
we are still paying benefits to ww2 korea and viet nma vets through the VA
The same will be true of current and future wars unless American soldier
hating libtards like you get their way
> Wars are not free.
Funny, nobody ever said they were You senility is showing in you every
word, sidiot

Sid9

9/4/2012 9:02:00 PM

0


"clairbear" <SidYouAreAnAss@msn.com> wrote in message
news:XnsA0C4A04286A02clairbear@216.196.97.142...
> "Sid9" <sid9@ bellsouth.net> wrote in news:k251id$hfs$1@dont-email.me:
>
>>
>> "clairbear" <Pathetic=Sid@msn.com> wrote in message
>> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>> news:k23qfb$bvs$1@dont-email.me:
>>>
>>>>
>>>> "Loaded Goat" <user@exame.net> wrote in message
>>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>>> http://csis.org/publication/avoiding-creeping-defeat-afgha...
>>>>> d- realistic-assumptions-strategy-and-plans
>>>>
>>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>>> Yeah cut and run the strategy of cowards like you
>>>> Then we need to sell small arms to all factions (so they can shoot
>>>> each other more efficiently)
>>> Obviously you do not learn from history we gave them arms before and
>>> that let to a date you in you senility have forgot about 9-11-2001
>>>> 13 years, 80,000 troops and billions later this war is a waste.
>>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>>> Take the money we would have other wise spent there and give it to
>>>> Americans provided they spend it rather than save it.
>>> Yeah give away money that worked real great with the porkulus
>>>> Another Republican war still sour!
>>> Obviously YOU forgot about 911 you silly senile ass
>>> SID YOU ARE PATHETIC
>>>
>>
>> 13 years have elapsed and we are no where in Afghanistan.
>> bin Laden is dead.... Thank you Seals and President Obama.
> Hey stupid learn math US troops have been there less than 11 years navy
> seals did kill bin laden not Obama he just took the grandstand for the
> seals' work OMG what a horses arse you are!!
>> Time to pack up and get our 80,000 troops out....save billions and let
>> the various tribes fight it out among themselves.
> Variuos tribes fighting it out was what led to 911 You really are
>> Otherwise Clair, put up or shut up.
> Put up or shut up? What are you talking about FOOL
>> Propose a TAX that pays for this war.
> I would have to be a member of congress to propse a new tax you silly twit
>> Make it a "pay as you go" business....and don't forget 60 years of
>> veterans benefits for our injured troops.
> we are still paying benefits to ww2 korea and viet nma vets through the
> VA
> The same will be true of current and future wars unless American soldier
> hating libtards like you get their way
>> Wars are not free.
> Funny, nobody ever said they were You senility is showing in you every
> word, sidiot
>
.
.

End the war the day after President Obama is elected.
No new wars unless they are funded with a dedicated tax....including VA
expense for 60 years.

If you want the war in Afghanistan to continue I urge you to suggest a tax
to pay for it. Your congressman is easy to reach


PS...Try to post in a legible manner.

clairbear

9/5/2012 12:30:00 AM

0

"Sid9" <sid9@ bellsouth.net> wrote in news:k25q7g$kqt$1@dont-email.me:

>
> "clairbear" <SidYouAreAnAss@msn.com> wrote in message
> news:XnsA0C4A04286A02clairbear@216.196.97.142...
>> "Sid9" <sid9@ bellsouth.net> wrote in
>> news:k251id$hfs$1@dont-email.me:
>>
>>>
>>> "clairbear" <Pathetic=Sid@msn.com> wrote in message
>>> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>> news:k23qfb$bvs$1@dont-email.me:
>>>>
>>>>>
>>>>> "Loaded Goat" <user@exame.net> wrote in message
>>>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>>>> http://csis.org/publication/avoiding-creeping-defeat-af...
n
>>>>>> ee d- realistic-assumptions-strategy-and-plans
>>>>>
>>>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>>>> Yeah cut and run the strategy of cowards like you
>>>>> Then we need to sell small arms to all factions (so they can shoot
>>>>> each other more efficiently)
>>>> Obviously you do not learn from history we gave them arms before
>>>> and that let to a date you in you senility have forgot about
>>>> 9-11-2001
>>>>> 13 years, 80,000 troops and billions later this war is a waste.
>>>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>>>> Take the money we would have other wise spent there and give it to
>>>>> Americans provided they spend it rather than save it.
>>>> Yeah give away money that worked real great with the porkulus
>>>>> Another Republican war still sour!
>>>> Obviously YOU forgot about 911 you silly senile ass
>>>> SID YOU ARE PATHETIC
>>>>
>>>
>>> 13 years have elapsed and we are no where in Afghanistan.
>>> bin Laden is dead.... Thank you Seals and President Obama.
>> Hey stupid learn math US troops have been there less than 11 years
>> navy seals did kill bin laden not Obama he just took the grandstand
>> for the seals' work OMG what a horses arse you are!!
>>> Time to pack up and get our 80,000 troops out....save billions and
>>> let the various tribes fight it out among themselves.
>> Variuos tribes fighting it out was what led to 911 You really are
>>> Otherwise Clair, put up or shut up.
>> Put up or shut up? What are you talking about FOOL
>>> Propose a TAX that pays for this war.
>> I would have to be a member of congress to propse a new tax you silly
>> twit
>>> Make it a "pay as you go" business....and don't forget 60 years of
>>> veterans benefits for our injured troops.
>> we are still paying benefits to ww2 korea and viet nma vets through
>> the VA
>> The same will be true of current and future wars unless American
>> soldier hating libtards like you get their way
>>> Wars are not free.
>> Funny, nobody ever said they were You senility is showing in you
>> every word, sidiot
>>
> .
> .
>
> End the war the day after President Obama is elected.
> No new wars unless they are funded with a dedicated tax....including
> VA expense for 60 years.
Did he or did he not promise to end it by now Did he or did he not
promise to close Gitmo
Did he or did he not promise only one term if he could not fix the
economy in under 4 years
Why don't YTOU hold your lying messiah to account
BECAUSE YOU ARE A HYPOCRITE JUST LIKE OBAMA
> If you want the war in Afghanistan to continue I urge you to suggest a
> tax to pay for it. Your congressman is easy to reach
And when the republican propse it just like the budget the real party
of NO, the democrats will block it
>
> PS...Try to post in a legible manner.
>
Coming from YOU that is funny some of you posts a a joke to read

> 13 years
Sidiots inability to do basic math
"Sid9" <sid9@ bellsouth.net> wrote in news:k25n8r$1a0$1@dont-email.me:

> When the facts care against you, label the OP "liar"
>
"Facts care" Really REALLY REALLY
Sidiot you are a real piece of work
'Fat, ignorant and democrat is no way to go through life son'

Sid9

9/5/2012 1:32:00 AM

0


"clairbear" <SidIsAnAss@msn.com> wrote in message
news:XnsA0C4D06D2E5C6clairbear@216.196.97.142...
> "Sid9" <sid9@ bellsouth.net> wrote in news:k25q7g$kqt$1@dont-email.me:
>
>>
>> "clairbear" <SidYouAreAnAss@msn.com> wrote in message
>> news:XnsA0C4A04286A02clairbear@216.196.97.142...
>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>> news:k251id$hfs$1@dont-email.me:
>>>
>>>>
>>>> "clairbear" <Pathetic=Sid@msn.com> wrote in message
>>>> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>>> news:k23qfb$bvs$1@dont-email.me:
>>>>>
>>>>>>
>>>>>> "Loaded Goat" <user@exame.net> wrote in message
>>>>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>>>>> http://csis.org/publication/avoiding-creeping-defeat-af...
> n
>>>>>>> ee d- realistic-assumptions-strategy-and-plans
>>>>>>
>>>>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>>>>> Yeah cut and run the strategy of cowards like you
>>>>>> Then we need to sell small arms to all factions (so they can shoot
>>>>>> each other more efficiently)
>>>>> Obviously you do not learn from history we gave them arms before
>>>>> and that let to a date you in you senility have forgot about
>>>>> 9-11-2001
>>>>>> 13 years, 80,000 troops and billions later this war is a waste.
>>>>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>>>>> Take the money we would have other wise spent there and give it to
>>>>>> Americans provided they spend it rather than save it.
>>>>> Yeah give away money that worked real great with the porkulus
>>>>>> Another Republican war still sour!
>>>>> Obviously YOU forgot about 911 you silly senile ass
>>>>> SID YOU ARE PATHETIC
>>>>>
>>>>
>>>> 13 years have elapsed and we are no where in Afghanistan.
>>>> bin Laden is dead.... Thank you Seals and President Obama.
>>> Hey stupid learn math US troops have been there less than 11 years
>>> navy seals did kill bin laden not Obama he just took the grandstand
>>> for the seals' work OMG what a horses arse you are!!
>>>> Time to pack up and get our 80,000 troops out....save billions and
>>>> let the various tribes fight it out among themselves.
>>> Variuos tribes fighting it out was what led to 911 You really are
>>>> Otherwise Clair, put up or shut up.
>>> Put up or shut up? What are you talking about FOOL
>>>> Propose a TAX that pays for this war.
>>> I would have to be a member of congress to propse a new tax you silly
>>> twit
>>>> Make it a "pay as you go" business....and don't forget 60 years of
>>>> veterans benefits for our injured troops.
>>> we are still paying benefits to ww2 korea and viet nma vets through
>>> the VA
>>> The same will be true of current and future wars unless American
>>> soldier hating libtards like you get their way
>>>> Wars are not free.
>>> Funny, nobody ever said they were You senility is showing in you
>>> every word, sidiot
>>>
>> .
>> .
>>
>> End the war the day after President Obama is elected.
>> No new wars unless they are funded with a dedicated tax....including
>> VA expense for 60 years.
> Did he or did he not promise to end it by now Did he or did he not
> promise to close Gitmo
> Did he or did he not promise only one term if he could not fix the
> economy in under 4 years
> Why don't YTOU hold your lying messiah to account
> BECAUSE YOU ARE A HYPOCRITE JUST LIKE OBAMA
>> If you want the war in Afghanistan to continue I urge you to suggest a
>> tax to pay for it. Your congressman is easy to reach
> And when the republican propse it just like the budget the real party
> of NO, the democrats will block it
>>
>> PS...Try to post in a legible manner.
>>
> Coming from YOU that is funny some of you posts a a joke to read
>
>> 13 years
> Sidiots inability to do basic math
> "Sid9" <sid9@ bellsouth.net> wrote in news:k25n8r$1a0$1@dont-email.me:
>
>> When the facts care against you, label the OP "liar"
>>
> "Facts care" Really REALLY REALLY
> Sidiot you are a real piece of work
> 'Fat, ignorant and democrat is no way to go through life son'

Typo schmuck. "are"

clairbear

9/5/2012 2:05:00 AM

0

"Sid9" <sid9@ bellsouth.net> wrote in news:k26a3d$f5r$1@dont-email.me:

>
> "clairbear" <SidIsAnAss@msn.com> wrote in message
> news:XnsA0C4D06D2E5C6clairbear@216.196.97.142...
>> "Sid9" <sid9@ bellsouth.net> wrote in news:k25q7g$kqt$1@dont-
email.me:
>>
>>>
>>> "clairbear" <SidYouAreAnAss@msn.com> wrote in message
>>> news:XnsA0C4A04286A02clairbear@216.196.97.142...
>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>> news:k251id$hfs$1@dont-email.me:
>>>>
>>>>>
>>>>> "clairbear" <Pathetic=Sid@msn.com> wrote in message
>>>>> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>>>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>>>> news:k23qfb$bvs$1@dont-email.me:
>>>>>>
>>>>>>>
>>>>>>> "Loaded Goat" <user@exame.net> wrote in message
>>>>>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>>>>>> http://csis.org/publication/avoiding-creepi...
afghanistan-
>> n
>>>>>>>> ee d- realistic-assumptions-strategy-and-plans
>>>>>>>
>>>>>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>>>>>> Yeah cut and run the strategy of cowards like you
>>>>>>> Then we need to sell small arms to all factions (so they can
shoot
>>>>>>> each other more efficiently)
>>>>>> Obviously you do not learn from history we gave them arms before
>>>>>> and that let to a date you in you senility have forgot about
>>>>>> 9-11-2001
>>>>>>> 13 years, 80,000 troops and billions later this war is a waste.
>>>>>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>>>>>> Take the money we would have other wise spent there and give it
to
>>>>>>> Americans provided they spend it rather than save it.
>>>>>> Yeah give away money that worked real great with the porkulus
>>>>>>> Another Republican war still sour!
>>>>>> Obviously YOU forgot about 911 you silly senile ass
>>>>>> SID YOU ARE PATHETIC
>>>>>>
>>>>>
>>>>> 13 years have elapsed and we are no where in Afghanistan.
>>>>> bin Laden is dead.... Thank you Seals and President Obama.
>>>> Hey stupid learn math US troops have been there less than 11 years
>>>> navy seals did kill bin laden not Obama he just took the grandstand
>>>> for the seals' work OMG what a horses arse you are!!
>>>>> Time to pack up and get our 80,000 troops out....save billions and
>>>>> let the various tribes fight it out among themselves.
>>>> Variuos tribes fighting it out was what led to 911 You really are
>>>>> Otherwise Clair, put up or shut up.
>>>> Put up or shut up? What are you talking about FOOL
>>>>> Propose a TAX that pays for this war.
>>>> I would have to be a member of congress to propse a new tax you
silly
>>>> twit
>>>>> Make it a "pay as you go" business....and don't forget 60 years of
>>>>> veterans benefits for our injured troops.
>>>> we are still paying benefits to ww2 korea and viet nma vets
through
>>>> the VA
>>>> The same will be true of current and future wars unless American
>>>> soldier hating libtards like you get their way
>>>>> Wars are not free.
>>>> Funny, nobody ever said they were You senility is showing in you
>>>> every word, sidiot
>>>>
>>> .
>>> .
>>>
>>> End the war the day after President Obama is elected.
>>> No new wars unless they are funded with a dedicated tax....including
>>> VA expense for 60 years.
>> Did he or did he not promise to end it by now Did he or did he not
>> promise to close Gitmo
>> Did he or did he not promise only one term if he could not fix the
>> economy in under 4 years
>> Why don't YTOU hold your lying messiah to account
>> BECAUSE YOU ARE A HYPOCRITE JUST LIKE OBAMA
>>> If you want the war in Afghanistan to continue I urge you to suggest
a
>>> tax to pay for it. Your congressman is easy to reach
>> And when the republican propse it just like the budget the real
party
>> of NO, the democrats will block it
>>>
>>> PS...Try to post in a legible manner.
>>>
>> Coming from YOU that is funny some of you posts a a joke to read
>>
>>> 13 years
>> Sidiots inability to do basic math
>> "Sid9" <sid9@ bellsouth.net> wrote in news:k25n8r$1a0$1@dont-
email.me:
>>
>>> When the facts care against you, label the OP "liar"
>>>
>> "Facts care" Really REALLY REALLY
>> Sidiot you are a real piece of work
>> 'Fat, ignorant and democrat is no way to go through life son'
>
> Typo schmuck. "are"
>
> 'PS...Try to post in a legible manner.'
YOU are a hypocrite from your own words
Sid you really are to stupid or senile for a forum of ideas

Sid9

9/5/2012 2:33:00 AM

0


"clairbear" <SidIsAnAsshole@msn.com> wrote in message
news:XnsA0C4E0AC799E9clairbear@216.196.97.142...
> "Sid9" <sid9@ bellsouth.net> wrote in news:k26a3d$f5r$1@dont-email.me:
>
>>
>> "clairbear" <SidIsAnAss@msn.com> wrote in message
>> news:XnsA0C4D06D2E5C6clairbear@216.196.97.142...
>>> "Sid9" <sid9@ bellsouth.net> wrote in news:k25q7g$kqt$1@dont-
> email.me:
>>>
>>>>
>>>> "clairbear" <SidYouAreAnAss@msn.com> wrote in message
>>>> news:XnsA0C4A04286A02clairbear@216.196.97.142...
>>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>>> news:k251id$hfs$1@dont-email.me:
>>>>>
>>>>>>
>>>>>> "clairbear" <Pathetic=Sid@msn.com> wrote in message
>>>>>> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>>>>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>>>>> news:k23qfb$bvs$1@dont-email.me:
>>>>>>>
>>>>>>>>
>>>>>>>> "Loaded Goat" <user@exame.net> wrote in message
>>>>>>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>>>>>>> http://csis.org/publication/avoiding-creepi...
> afghanistan-
>>> n
>>>>>>>>> ee d- realistic-assumptions-strategy-and-plans
>>>>>>>>
>>>>>>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>>>>>>> Yeah cut and run the strategy of cowards like you
>>>>>>>> Then we need to sell small arms to all factions (so they can
> shoot
>>>>>>>> each other more efficiently)
>>>>>>> Obviously you do not learn from history we gave them arms before
>>>>>>> and that let to a date you in you senility have forgot about
>>>>>>> 9-11-2001
>>>>>>>> 13 years, 80,000 troops and billions later this war is a waste.
>>>>>>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>>>>>>> Take the money we would have other wise spent there and give it
> to
>>>>>>>> Americans provided they spend it rather than save it.
>>>>>>> Yeah give away money that worked real great with the porkulus
>>>>>>>> Another Republican war still sour!
>>>>>>> Obviously YOU forgot about 911 you silly senile ass
>>>>>>> SID YOU ARE PATHETIC
>>>>>>>
>>>>>>
>>>>>> 13 years have elapsed and we are no where in Afghanistan.
>>>>>> bin Laden is dead.... Thank you Seals and President Obama.
>>>>> Hey stupid learn math US troops have been there less than 11 years
>>>>> navy seals did kill bin laden not Obama he just took the grandstand
>>>>> for the seals' work OMG what a horses arse you are!!
>>>>>> Time to pack up and get our 80,000 troops out....save billions and
>>>>>> let the various tribes fight it out among themselves.
>>>>> Variuos tribes fighting it out was what led to 911 You really are
>>>>>> Otherwise Clair, put up or shut up.
>>>>> Put up or shut up? What are you talking about FOOL
>>>>>> Propose a TAX that pays for this war.
>>>>> I would have to be a member of congress to propse a new tax you
> silly
>>>>> twit
>>>>>> Make it a "pay as you go" business....and don't forget 60 years of
>>>>>> veterans benefits for our injured troops.
>>>>> we are still paying benefits to ww2 korea and viet nma vets
> through
>>>>> the VA
>>>>> The same will be true of current and future wars unless American
>>>>> soldier hating libtards like you get their way
>>>>>> Wars are not free.
>>>>> Funny, nobody ever said they were You senility is showing in you
>>>>> every word, sidiot
>>>>>
>>>> .
>>>> .
>>>>
>>>> End the war the day after President Obama is elected.
>>>> No new wars unless they are funded with a dedicated tax....including
>>>> VA expense for 60 years.
>>> Did he or did he not promise to end it by now Did he or did he not
>>> promise to close Gitmo
>>> Did he or did he not promise only one term if he could not fix the
>>> economy in under 4 years
>>> Why don't YTOU hold your lying messiah to account
>>> BECAUSE YOU ARE A HYPOCRITE JUST LIKE OBAMA
>>>> If you want the war in Afghanistan to continue I urge you to suggest
> a
>>>> tax to pay for it. Your congressman is easy to reach
>>> And when the republican propse it just like the budget the real
> party
>>> of NO, the democrats will block it
>>>>
>>>> PS...Try to post in a legible manner.
>>>>
>>> Coming from YOU that is funny some of you posts a a joke to read
>>>
>>>> 13 years
>>> Sidiots inability to do basic math
>>> "Sid9" <sid9@ bellsouth.net> wrote in news:k25n8r$1a0$1@dont-
> email.me:
>>>
>>>> When the facts care against you, label the OP "liar"
>>>>
>>> "Facts care" Really REALLY REALLY
>>> Sidiot you are a real piece of work
>>> 'Fat, ignorant and democrat is no way to go through life son'
>>
>> Typo schmuck. "are"
>>
>> 'PS...Try to post in a legible manner.'
> YOU are a hypocrite from your own words
> Sid you really are to stupid or senile for a forum of ideas
.
.
.
Considering the source, I'm honored!


clairbear

9/5/2012 3:24:00 AM

0

"Sid9" <sid9@ bellsouth.net> wrote in news:k26dkl$v35$1@dont-email.me:

>
> "clairbear" <SidIsAnAsshole@msn.com> wrote in message
> news:XnsA0C4E0AC799E9clairbear@216.196.97.142...
>> "Sid9" <sid9@ bellsouth.net> wrote in news:k26a3d$f5r$1@dont-
email.me:
>>
>>>
>>> "clairbear" <SidIsAnAss@msn.com> wrote in message
>>> news:XnsA0C4D06D2E5C6clairbear@216.196.97.142...
>>>> "Sid9" <sid9@ bellsouth.net> wrote in news:k25q7g$kqt$1@dont-
>> email.me:
>>>>
>>>>>
>>>>> "clairbear" <SidYouAreAnAss@msn.com> wrote in message
>>>>> news:XnsA0C4A04286A02clairbear@216.196.97.142...
>>>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>>>> news:k251id$hfs$1@dont-email.me:
>>>>>>
>>>>>>>
>>>>>>> "clairbear" <Pathetic=Sid@msn.com> wrote in message
>>>>>>> news:XnsA0C3EFC48691Bclairbear@216.196.97.142...
>>>>>>>> "Sid9" <sid9@ bellsouth.net> wrote in
>>>>>>>> news:k23qfb$bvs$1@dont-email.me:
>>>>>>>>
>>>>>>>>>
>>>>>>>>> "Loaded Goat" <user@exame.net> wrote in message
>>>>>>>>> news:Ohc1s.6500$EJ7.4268@newsfe10.iad...
>>>>>>>>>> http://csis.org/publication/avoiding-creepi...
>> afghanistan-
>>>> n
>>>>>>>>>> ee d- realistic-assumptions-strategy-and-plans
>>>>>>>>>
>>>>>>>>> We need to exit Afghanistan in 2013 not in 2014 as planned.
>>>>>>>> Yeah cut and run the strategy of cowards like you
>>>>>>>>> Then we need to sell small arms to all factions (so they can
>> shoot
>>>>>>>>> each other more efficiently)
>>>>>>>> Obviously you do not learn from history we gave them arms
before
>>>>>>>> and that let to a date you in you senility have forgot about
>>>>>>>> 9-11-2001
>>>>>>>>> 13 years, 80,000 troops and billions later this war is a
waste.
>>>>>>>> Your math is flawed 2001 to 2012 is 11 years, idiot
>>>>>>>>> Take the money we would have other wise spent there and give
it
>> to
>>>>>>>>> Americans provided they spend it rather than save it.
>>>>>>>> Yeah give away money that worked real great with the porkulus
>>>>>>>>> Another Republican war still sour!
>>>>>>>> Obviously YOU forgot about 911 you silly senile ass
>>>>>>>> SID YOU ARE PATHETIC
>>>>>>>>
>>>>>>>
>>>>>>> 13 years have elapsed and we are no where in Afghanistan.
>>>>>>> bin Laden is dead.... Thank you Seals and President Obama.
>>>>>> Hey stupid learn math US troops have been there less than 11
years
>>>>>> navy seals did kill bin laden not Obama he just took the
grandstand
>>>>>> for the seals' work OMG what a horses arse you are!!
>>>>>>> Time to pack up and get our 80,000 troops out....save billions
and
>>>>>>> let the various tribes fight it out among themselves.
>>>>>> Variuos tribes fighting it out was what led to 911 You really
are
>>>>>>> Otherwise Clair, put up or shut up.
>>>>>> Put up or shut up? What are you talking about FOOL
>>>>>>> Propose a TAX that pays for this war.
>>>>>> I would have to be a member of congress to propse a new tax you
>> silly
>>>>>> twit
>>>>>>> Make it a "pay as you go" business....and don't forget 60 years
of
>>>>>>> veterans benefits for our injured troops.
>>>>>> we are still paying benefits to ww2 korea and viet nma vets
>> through
>>>>>> the VA
>>>>>> The same will be true of current and future wars unless American
>>>>>> soldier hating libtards like you get their way
>>>>>>> Wars are not free.
>>>>>> Funny, nobody ever said they were You senility is showing in you
>>>>>> every word, sidiot
>>>>>>
>>>>> .
>>>>> .
>>>>>
>>>>> End the war the day after President Obama is elected.
>>>>> No new wars unless they are funded with a dedicated
tax....including
>>>>> VA expense for 60 years.
>>>> Did he or did he not promise to end it by now Did he or did he not
>>>> promise to close Gitmo
>>>> Did he or did he not promise only one term if he could not fix the
>>>> economy in under 4 years
>>>> Why don't YTOU hold your lying messiah to account
>>>> BECAUSE YOU ARE A HYPOCRITE JUST LIKE OBAMA
>>>>> If you want the war in Afghanistan to continue I urge you to
suggest
>> a
>>>>> tax to pay for it. Your congressman is easy to reach
>>>> And when the republican propse it just like the budget the real
>> party
>>>> of NO, the democrats will block it
>>>>>
>>>>> PS...Try to post in a legible manner.
>>>>>
>>>> Coming from YOU that is funny some of you posts a a joke to read
>>>>
>>>>> 13 years
>>>> Sidiots inability to do basic math
>>>> "Sid9" <sid9@ bellsouth.net> wrote in news:k25n8r$1a0$1@dont-
>> email.me:
>>>>
>>>>> When the facts care against you, label the OP "liar"
>>>>>
>>>> "Facts care" Really REALLY REALLY
>>>> Sidiot you are a real piece of work
>>>> 'Fat, ignorant and democrat is no way to go through life son'
>>>
>>> Typo schmuck. "are"
>>>
>>> 'PS...Try to post in a legible manner.'
>> YOU are a hypocrite from your own words
>> Sid you really are to stupid or senile for a forum of ideas
> .
> .
> .
> Considering the source, I'm honored!
>
Wow the first time we heard that the dinosaurs were still roaming the
badlands
You are such a clever guy...NOT.
You just a pathetic, senile, clownish DNC shilling HYPOCRITE, who last
original thought died of loneliness when Truman was running against
Dewey