Search found 3 matches

by topu
Wed Mar 15, 2006 2:46 pm
Forum: Bugs and suggestions
Topic: 511 - Do You Know the Way to San Jose? - Do nothing AC
Replies: 62
Views: 11195

you should clear the sorting of string at first. if the some name is like this (according to english character order list ) bipu,adam , amin , dip , then the sorting is like this adam,amin,bipu,dip . at first thinking about the first character. if two has the same first character then think about ...
by topu
Wed Mar 15, 2006 7:53 am
Forum: Bugs and suggestions
Topic: 511 - Do You Know the Way to San Jose? - Do nothing AC
Replies: 62
Views: 11195

rare order

the matter is , here the input is a sorted index (just as a sorted name data base).but the problem is in this case though it used the englich character the order is not the same. that mean it is not in this order (a,b,c,d.............,y,z). it is an unfamiliar language and you dont know the order ...
by topu
Tue Mar 14, 2006 3:15 pm
Forum: Bugs and suggestions
Topic: 511 - Do You Know the Way to San Jose? - Do nothing AC
Replies: 62
Views: 11195

proble-200,rare-order - why presentation error?

please see the code below why there shows the presentation error?


#include<stdio.h>
#include<string.h>
struct line{
char chap[20];
struct line *prev;
struct line *next;
};
struct order{
char ch;
struct order *prev;
struct order *next;
};
void main()
{
struct line *l,*temp,*base;
struct ...

Go to advanced search