°ÙÒ»²âÆÀ - Java¾­µäÃæÊÔÌâ ´ø´ð°¸ ÏÂÔØ±¾ÎÄ

Ö°Òµ¼¼ÄÜÌâ¿â&ÔÚÏßÔÆ±ÊÊÔÆ½Ì¨http://www.101test.Com {

vectordata;

ifstreamin(\if ( !in) {

cout<<\exit(1); } int temp; while (!in.eof()) { in>>temp;

data.push_back(temp); }

in.close(); //¹Ø±ÕÊäÈëÎļþÁ÷ Order(data);

ofstream out(\if ( !out) {

cout<<\exit(1);

µÚ13Ò³

Ö°Òµ¼¼ÄÜÌâ¿â&ÔÚÏßÔÆ±ÊÊÔÆ½Ì¨http://www.101test.Com }

for ( i = 0 ; i

30. [±à³Ì] Á´±íÌ⣺һ¸öÁ´±íµÄ½áµã½á¹¹

struct Node { intdata ; Node *next ; };

typedefstruct Node Node ;

ÒÑÖªÁ´±íµÄÍ·½áµãhead,дһ¸öº¯Êý°ÑÕâ¸öÁ´±íÄæÐò ( Intel) ²Î¿¼´ð°¸£ºNode * ReverseList(Node*head) //Á´±íÄæÐò {

if ( head == NULL || head->next == NULL ) returnhead; Node *p1 = head ; Node *p2 = p1->next ; Node *p3 =p2->next ; p1->next = NULL ; while ( p3 != NULL ) {

µÚ14Ò³

Ö°Òµ¼¼ÄÜÌâ¿â&ÔÚÏßÔÆ±ÊÊÔÆ½Ì¨http://www.101test.Com p2->next = p1 ; p1 = p2 ; p2 = p3 ; p3 = p3->next ; }

p2->next = p1 ; head = p2 ; return head ; }

31. [±à³Ì]ÒÑÖªÁ½¸öÁ´±íhead1 ºÍhead2 ¸÷×ÔÓÐÐò£¬Çë°ÑËüÃǺϲ¢³ÉÒ»¸öÁ´±íÒÀÈ»ÓÐÐò¡£(±£Áô

ËùÓнáµã£¬¼´±ã´óСÏàͬ£©

²Î¿¼´ð°¸£ºNode *Merge(Node *head1 , Node *head2) {

if ( head1 == NULL) return head2; if ( head2 == NULL) return head1 ; Node *head = NULL ; Node*p1 = NULL; Node *p2 = NULL;

if ( head1->data < head2->data )

µÚ15Ò³

Ö°Òµ¼¼ÄÜÌâ¿â&ÔÚÏßÔÆ±ÊÊÔÆ½Ì¨http://www.101test.Com {

head = head1 ; p1 = head1->next; p2 = head2 ; } else {

head = head2 ; p2 = head2->next ; p1 = head1 ; }

Node *pcurrent = head ;

while ( p1 != NULL && p2 != NULL) {

if ( p1->data <= p2->data ) {

pcurrent->next = p1; pcurrent = p1 ; p1 = p1->next ; } else

µÚ16Ò³