Forum: Game Development Dec 15th, 2008 |
| Replies: 0 Views: 911 I am searching that information:
Using CGI scripts , an opengl application will be shown on the web browser.
our opengl application will consist of objects like shperes,balls...
user can control... |
Forum: C# Oct 21st, 2008 |
| Replies: 1 Views: 721 i tried to slide a picture on a panel and draw line after move.
but i couldnt do that at realtime because i cant refresh the panel after draw.only after hiding and reopening the window i can see the... |
Forum: C++ Apr 14th, 2008 |
| Replies: 5 Views: 1,294 I am creating a >1000 items heap.You know removing the first is so easy.But removing the 700 etc. item is diffucult.Because priority_queue hasnt a remove function.Now I learnt set has erase and... |
Forum: C++ Apr 14th, 2008 |
| Replies: 5 Views: 1,294 Hi.I looked for set.But I couldnt find that info:Is set like to priority_queue according to algorithm?I need a heap algorithm.Because of this I used PQueue.Thanks. |
Forum: C++ Apr 13th, 2008 |
| Replies: 5 Views: 1,294 Hi.I need an answer to my heap problem.
I am creating a 1000 items priority_queue (priority_queue<Molecule*,vector<Molecule*>,SortClass>);
Sometimes I need deleteThis(Molecule *mol) function.So... |
Forum: Java Mar 19th, 2008 |
| Replies: 2 Views: 493 I am beginner at java.I want to learn jdbc-oracle database subjects.By downloading jdeveloper and sqldeveloper I started but I couldnt connect database.So I want to start learning jdbc-oracle from... |
Forum: C++ Nov 12th, 2007 |
| Replies: 13 Views: 2,656 delete int time then use srand((unsigned)time(0)) |
Forum: C++ Nov 11th, 2007 |
| Replies: 9 Views: 1,980 string s;
cin>>s;
for(int i=0;i<s.length();i++)
{
if(isalpha(s[i]))
{
cout<<"error!!!!!!";
return -1;
} |
Forum: C++ Nov 11th, 2007 |
| Replies: 9 Views: 1,980 You are using isdigit for double or int.but it wont return true.you may use for char.and if char is digit it will return true.so you may change your method for getting number from user. |
Forum: C++ Nov 11th, 2007 |
| Replies: 3 Views: 1,621 Iterator is showing the first begin "adress" of list.Then you are adding the numbers.So they are not in sequence of the first ones.
The size of list will the count of all numbers.But iterator wont... |