Forum: C++ Jan 16th, 2009 |
| Replies: 1 Views: 452 sorry if i posted in wrong forum.pls forgive me
pls tell how to find bfs successor of a node in a tree(BST and binary tree) |
Forum: C++ Jan 7th, 2009 |
| Replies: 4 Views: 454 use a dp solution
#include<iostream.h>
#include<string.h>
#include<vector.h>
#include<iterator.h>
int main()
{
vector<long long int>v1(101);
vector<long long int>v2(101);
int i=0; |
Forum: C++ Jan 7th, 2009 |
| Replies: 10 Views: 1,269 also use getch();
include<conio.h> |
Forum: C++ Jan 3rd, 2009 |
| Replies: 3 Views: 741 could somebody tell wats wrong with this
#define FOR(x,n)for(typeof(x);x<n;x++) |