hiho week 59 register

Ended

Participants:345

Verdict:Accepted
Score:100 / 100
Submitted:2015-08-17 14:32:24

Lang:GCC

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Performance_Log.cpp : 
//
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define STRING_SIZE 256
struct node
{
    int hour;
    int minute;
    int second;
    char* name;
    int order;
};
int main()
{
    int num;
    char temp[6];
    struct node* stack_head;
    struct node* result_head;
    struct node* tmp;
    char*name;
    int index = 0;
    int order = 0;
    int last_time;
    int i;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX