📄 auxiliary.c
字号:
/* Some utility functions (not part of the algorithm) */# include <stdio.h># include <stdlib.h># include <math.h># include "global.h"# include "rand.h"/* Function to return the maximum of two variables */long double maximum (long double a, long double b){ if (a>b) { return(a); } return (b);}/* Function to return the minimum of two variables */long double minimum (long double a, long double b){ if (a<b) { return (a); } return (b);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -