首页 > 代码库 > OJ 注意事项

OJ 注意事项

1,检查指针是否有效,即是否为NULL

 1 void OutputMaxAndMin(int * pInputInteger, int InputNum, int * pMaxValue, int * pMaxNum, int * pMinValue, int * pMinNum) 2 { 3     /*在这里实现功能*/ 4         int i = 0; 5     int num = 0; 6     if (InputNum <= 0 || pInputInteger == NULL) 7     { 8         *pMaxNum =0; 9         *pMinNum = 0;10         *pMaxValue = http://www.mamicode.com/0;11         *pMinValue = http://www.mamicode.com/0;12         return;13     }14 15     .....16 }

 

OJ 注意事项