#include <iostream>
#include <cmath>
#include <vector>
...

C++ Optimizing another Project ...

by blue-protoman.myopenid.com, November 26, 2011 12:23, 6 refactorings, tagged with Prime Numbers, project_euler

Hello! I'm trying to yet a...

680a1dcca033e0959c1be87a1800ae60 Talk
#include <iostream>
using std::cout;
//Challenge: Add all the natural numbers below one thousand that are multiples of 3 or 5.
...

C++ Optimizing a Project Euler ...

by blue-protoman.myopenid.com, November 05, 2011 12:56, 5 refactorings, tagged with project_euler, euler

Hello! New here. Been stu...

680a1dcca033e0959c1be87a1800ae60 Talk
#include <string>
#include <fstream>
#include <iomanip>
...

C++ Dynamic Programming with C++

by C++ Noob, October 22, 2011 11:03, 13 refactorings, tagged with dynamic-programming

I am trying to use dynamic ...

D41d8cd98f00b204e9800998ecf8427e Talk
#include <iostream>
#include <vector>
using namespace std;
...

C++ Simple Quiz

by thaostra.myopenid.com, October 04, 2011 16:53, 5 refactorings

This is a working game, but...

55502f40dc8b7c769880b10874abc9d0 Talk
void drawStatusBar(char* text, int x, int y, int current, int max)	
{
	dbText(x, y-14, text);
...

C++ drawStatusBar() function fo...

by https://www.google.com/accounts/o8/id?id=AItOawl3BeAhTXKYDpKI7ld64fgVwaukoKGEuUo, August 26, 2011 20:48, 3 refactorings

First post!

Just curio...

55502f40dc8b7c769880b10874abc9d0 Talk
// this is in the global scope of my program. normally accepted as bad code, 
// but it seems to make sense in the context of an embedded platform.
// "global" cache
...

C++ String parsing in AVR-GCC

by Greg Buehler, April 18, 2011 07:58, 6 refactorings, tagged with speed, C++

I'm working on interfacing ...

C3b0b8da886396ca8d5a28ad397c404d Talk
// The required structs
struct linkedlist
{
...

C++ Optimal removal from linked...

by Morningcoffee, March 07, 2011 01:14, 4 refactorings, tagged with pthread, mutex

I'm really concerned about ...

6532d7aed321b7262ffb96b85ad3528c Talk
#include <iostream>
#include <vector>
#include <algorithm>
...

C++ The 3n+1 problem

by https://me.yahoo.com/a/PdY5mndw1tV8wEfh9xk0bSYa9tKf5g.hRlk-, February 15, 2011 22:59, 5 refactorings, tagged with refactor, c++ algorithm, refractoring, beginner, problem

What improvements can be ma...

55502f40dc8b7c769880b10874abc9d0 Talk
Exactly what the title says.  I don't want to know what your "project solutions" are, or your "programming solutions"; I need to know what a solution file is and why it's used and how.  In the vast, vast, internet nobody has seemingly ever answered this question.  I
have looked... everywhere.
=========================================================================================
...

C++ what is a project "sol...

by gameguru.myopenid.com, February 04, 2011 23:12, 1 refactoring, tagged with easy, simple, help, solution, project, file, project solution, solution file, impossible, hard, ridiculous, unanswered, unresponded to, responseless

Exactly what the title says...

55502f40dc8b7c769880b10874abc9d0 Talk
_

C++ what is a project "sol...

by gameguru.myopenid.com, February 04, 2011 23:12, 1 refactoring, tagged with easy, simple, help, solution, project, file, project solution, solution file, impossible, hard, ridiculous, unanswered, unresponded to, responseless

Exactly what the title says...

55502f40dc8b7c769880b10874abc9d0 Talk
using namespace std;
#include <iostream>
void main ()
...

C++ While Loop problem

by https://www.google.com/accounts/o8/id?id=AItOawnw_1FTdneRHSO7bpyrOR95lIwLqo99SxE, November 15, 2010 15:51, 5 refactorings, tagged with while, black screen

Without the while loop, it ...

55502f40dc8b7c769880b10874abc9d0 Talk
void MainDialog::OnTickTimer(wxTimerEvent& WXUNUSED(e))
{
    const wxLongLong ElapsedTime     = wxGetLocalTime() - m_TimerStartTick;
...

C++ Update controls on timer tick

by Scriptdaemon, November 13, 2010 07:55, 1 refactoring, tagged with wxWidgets

What I'm doing is updating ...

D41d8cd98f00b204e9800998ecf8427e Talk
#include <iostream.h>

#define arrMax 100 
...

C++ dada

by https://www.google.com/accounts/o8/id?id=AItOawkfFqECUiRiuMiSFRRKZUKKwm1EkcH_qRM, October 27, 2010 23:55, 3 refactorings

for (i=0; i<n; i++)
...

55502f40dc8b7c769880b10874abc9d0 Talk
  4d    Ø"  ¡                         >   X   r      ´   À   Ø   æ   ò     (  H  j    ¤  ¼  Ê  è  ø    ,  >  R  z  ’  ¼  Î  &  *  <  P  v  œ  ¦  º  Þ    R  ¢    N  š  ö  H  ˜  ð  f  Æ  &  H  ’  Ð  	  ^	  ²	  ö	  <
  Å’
  â
...

C++ AndroidManifest

by m0n0lith.myopenid.com, August 12, 2010 05:59, 1 refactoring

Code to re-skin Android Nex...

55502f40dc8b7c769880b10874abc9d0 Talk
// Original method

int monster()
...

C++ Return in the middle of an ...

by https://www.google.com/accounts/o8/id?id=AItOawlmF6128_7x9vlFVJ0ZVoNOgsxom2Stesw, June 28, 2010 17:38, 3 refactorings, tagged with C++, extract method, monster method

I have a very long method, ...

55502f40dc8b7c769880b10874abc9d0 Talk
bool Translations::compatibleNICodes(const Rule& rule, 
                                         const std::vector<std::string>& nicodes)
    {
...

C++ Copy-Paste code with intern...

by deworde.myopenid.com, June 10, 2010 09:55, 7 refactorings

I'm struggling to reformat ...

55502f40dc8b7c769880b10874abc9d0 Talk
//----------------------------------------------------------------
//FindShortestPath.cpp
//
...

C++ PathFinding Algorithms

by leonhano, April 14, 2010 19:31, No refactoring

Old code, do not optimize.

E9f4c1a1dca6e53f58eb868ca32c1d5a Talk
int width = iplImage->width;
	int height = iplImage->height;
...

C++ exchanging 2 values

by trusmis.blogspot.com, April 01, 2010 06:43, 1 refactoring, tagged with C++, optimize, Qt

I am working with OpenCV an...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <fstream>
using std::ofstream;
#include <time.h>
...

C++ Game of Life

by vodkamilkshake, January 22, 2010 08:29, 3 refactorings, tagged with game, algorithm, C++, cpp, gameoflife, conway

This is an implementation o...

73465ace35a83efec10235c119800304 Talk
// handlePathChange() is called whenever the URI changes

void MVCApplication::handlePathChange()
...

C++ Re-implementation of the AS...

by the-drow.myopenid.com, January 15, 2010 19:54, 2 refactorings, tagged with C++, routing, mvc, asp.net-mvc-routing

I'm trying to re-implement ...

Ecefdcbc16e0f1fd61be3011b0045761 Talk
#pragma once

#include <iostream>
...

C++ c++ templates, Vector2, Vec...

by rakkarage.myopenid.com, November 13, 2009 22:50, 4 refactorings, tagged with math, template, vector, C++, 3d

for my 3d game :) still wor...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <iostream>
#include <stdio.h>
//#include <cstdlib>
...

C++ Calender

by vhar.myopenid.com, August 14, 2009 05:09, 4 refactorings, tagged with fun

prints months calenders fro...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <map>
#include <string>
...

C++ PHP associative array class...

by tearsfornations.blogspot.com, August 08, 2009 19:10, 1 refactoring, tagged with c++ array, php array in c++

looking for stability and s...

55502f40dc8b7c769880b10874abc9d0 Talk
#ifndef TFN_BIBLE_H
#define TFN_BIBLE_H

...

C++ Bible class

by tearsfornations.blogspot.com, August 06, 2009 22:31, 6 refactorings, tagged with Bible

code works, just an idea fo...

55502f40dc8b7c769880b10874abc9d0 Talk
#include <iostream>
#include <limits>
#include <map>
...

C++ Breadth First Search (Textb...

by medikgt.myopenid.com, July 11, 2009 02:06, 1 refactoring, tagged with c++ algorithm

This is the BFS example use...

55502f40dc8b7c769880b10874abc9d0 Talk