资源简介

包含了C++ Primer第五版的全部资源内容(书中源代码,课后习题源代码、课后习题详细答案文档说明),是一份学习C++11的必备资料。

资源截图

代码片段和文件信息

from sys import argv
from os import listdir
from os.path import isfile join

if len(argv) > 1:
    mypath = argv[1]
else:
    mypath = ‘.‘

print ‘clang-format -i‘

onlyfiles = [ f for f in listdir(mypath) if isfile(join(mypath f)) ]
for file in onlyfiles:
    if (file.endswith((‘.cpp‘ ‘.cc‘ ‘.h‘))):
        print mypath + ‘\\‘ + file

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-11-04 14:58  C++Primer5th答案\
     文件        2014  2016-03-17 02:43  C++Primer5th答案\.clang-format
     文件         262  2016-03-17 02:43  C++Primer5th答案\.gitignore
     文件      470433  2018-11-04 14:54  C++Primer5th答案\C++-primer-第五版课后习题答案(完整版).docx
     目录           0  2018-10-23 08:48  C++Primer5th答案\ch01\
     文件         274  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_09.cpp
     文件         209  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_10.cpp
     文件         427  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_11.cpp
     文件         168  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_20.cpp
     文件         348  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_21.cpp
     文件         530  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_22.cpp
     文件         585  2016-03-17 02:43  C++Primer5th答案\ch01\ex1_23.cpp
     文件        8307  2016-03-17 02:43  C++Primer5th答案\ch01\README.md
     目录           0  2018-10-23 08:48  C++Primer5th答案\ch02\
     文件         377  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_04.cpp
     文件         666  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_34.cpp
     文件        1118  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_35.cpp
     文件        1079  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_42.h
     文件         214  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_42_1.cpp
     文件         535  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_42_2.cpp
     文件         749  2016-03-17 02:43  C++Primer5th答案\ch02\ex2_42_3.cpp
     文件       20970  2016-03-17 02:43  C++Primer5th答案\ch02\README.md
     目录           0  2018-10-23 08:48  C++Primer5th答案\ch03\
     文件         352  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_01a.cpp
     文件        1451  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_01b.cpp
     文件         277  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_02a.cpp
     文件         246  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_02b.cpp
     文件         484  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_04a.cpp
     文件         539  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_04b.cpp
     文件         424  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_05a.cpp
     文件         425  2016-03-17 02:43  C++Primer5th答案\ch03\ex3_05b.cpp
............此处省略1141个文件信息

评论

共有 条评论