这是林永吉的算法题仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
988 B

  1. // pch.h: 这是预编译标头文件。
  2. // 下方列出的文件仅编译一次,提高了将来生成的生成性能。
  3. // 这还将影响 IntelliSense 性能,包括代码完成和许多代码浏览功能。
  4. // 但是,如果此处列出的文件中的任何一个在生成之间有更新,它们全部都将被重新编译。
  5. // 请勿在此处添加要频繁更新的文件,这将使得性能优势无效。
  6. #ifndef PCH_H
  7. #define PCH_H
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include <string.h>
  11. #include<Windows.h>
  12. #include <atlstr.h>
  13. #include"../code/include/1_ContainsNearbyDuplicate.h"
  14. #include"../code/include/2_ExcelSheetColumnTitle.h"
  15. #include"../code/include/3_IsUgly.h"
  16. #include"../code/include/4_IsPalindrome.h"
  17. #include"../code/include/5_MinDepth.h"
  18. int CalcCount(int n, char(*str)[10], const char* FileName);
  19. int* str_device(CString str, int* value_count);
  20. int str_device2(CString str, char(*return_str)[50]);
  21. bool CstrToBool(CString str);
  22. #endif //PCH_H