实例介绍
本人的一些poj基础训练题,主要包括图论,大数,二叉搜索,DP,搜索,hash等内容的入门题的ac源代码,代码风格容易模仿,适合acm入门级爱好者,题目涵盖范围对于入门者大约需要3至6个月左右的学习时间(有acm参加经验者和大牛们请无视本资源,别浪费分了)
【实例截图】
【核心代码】
4744302543012470990.rar
└── ac_code
├── a.txt
├── big-int-multiple.cpp
├── BIG_MULTIPLE
│ └── 2109.cpp
├── BINARYSEARCH_STRUCT
│ └── 2002.cpp
├── CPrefixSorting
├── DICTIONARY
│ └── 1035.cpp
├── dijkstra.cpp
├── DP
│ ├── 1080.cpp
│ ├── 1260.cpp
│ ├── 1458.cpp
│ ├── 1579.cpp
│ ├── 1887.cpp
│ ├── 1953.cpp
│ ├── 2250.cpp
│ ├── 2533.cpp
│ ├── 3356.cpp
│ ├── 3624.cpp
│ ├── BAG
│ │ ├── 1384.cpp
│ │ └── 3436.cpp
│ ├── DICTIONARY
│ │ └── 3267.cpp
│ ├── LCS
│ │ ├── 1159.cpp
│ │ └── 3080.cpp
│ ├── LIS
│ │ └── 1631.cpp
│ ├── poj1157.cpp
│ ├── test_struct_copy.cpp
│ ├── TREE_DP
│ │ └── 1163.cpp
│ └── VASE
│ └── 1157.cpp
├── EASY
│ ├── 1004.cpp
│ ├── 2027.cpp
│ └── hanoi4
│ └── 1958.cpp
├── ENUM
│ ├── 2531enumeration.cpp
│ └── 3295.c
├── exes
│ ├── 1004.exe
│ ├── 1035.exe
│ ├── 1080.exe
│ ├── 1088.exe
│ ├── 1157.exe
│ ├── 1159.exe
│ ├── 1163.exe
│ ├── 1260.exe
│ ├── 1273.exe
│ ├── 1321.exe
│ ├── 1384.exe
│ ├── 1426.exe
│ ├── 1458.exe
│ ├── 1459.exe
│ ├── 1466.exe
│ ├── 1511.exe
│ ├── 1579.exe
│ ├── 1631.exe
│ ├── 1840.exe
│ ├── 1860.exe
│ ├── 1861.exe
│ ├── 1887.exe
│ ├── 1936.exe
│ ├── 1953.exe
│ ├── 1958.exe
│ ├── 2002.exe
│ ├── 2027.exe
│ ├── 2081.exe
│ ├── 2192.exe
│ ├── 2250.exe
│ ├── 2251.exe
│ ├── 2299.exe
│ ├── 2388.exe
│ ├── 2485.exe
│ ├── 2488.exe
│ ├── 2503.exe
│ ├── 2531.exe
│ ├── 2533.exe
│ ├── 3009.exe
│ ├── 3020.exe
│ ├── 3026.exe
│ ├── 3041.exe
│ ├── 3080.exe
│ ├── 3083.exe
│ ├── 3083W.exe
│ ├── 3126.exe
│ ├── 3267.exe
│ ├── 3274.exe
│ ├── 3278.exe
│ ├── 3281.exe
│ ├── 3349.exe
│ ├── 3356.exe
│ ├── 3436.exe
│ ├── 3624.exe
│ ├── a.exe
│ ├── d.exe
│ └── t.exe
├── GRAPH_THEORY
│ ├── BELLMAN_FORD
│ │ ├── 1860.cpp
│ │ ├── 2240.cpp
│ │ ├── 2253.cpp
│ │ └── 3259.cpp
│ ├── BIPARTITE_GRAPH
│ │ ├── 1466adj.cpp
│ │ ├── 1466.cpp
│ │ ├── 3020.cpp
│ │ └── 3041.cpp
│ ├── DIJKSTRA
│ │ ├── 1062.cpp
│ │ ├── 1125.cpp
│ │ ├── 1135.cpp
│ │ └── 2253dijk.cpp
│ ├── MAX_FLOW
│ │ ├── 1273.cpp
│ │ └── 1459.cpp
│ ├── MINIMAL_SPANNING_TREE
│ │ ├── 1861.cpp
│ │ └── 1861dijk.cpp
│ ├── PRIM
│ │ └── 2485.cpp
│ └── SPFA
│ ├── 1511.cpp
│ ├── 1511linklist.cpp
│ └── 1511tle.cpp
├── HASH
│ ├── 1840.cpp
│ ├── 2081.cpp
│ ├── 2503.cpp
│ ├── 3274.cpp
│ └── 3349.cpp
├── inputs
│ ├── input
│ ├── input~
│ ├── input1004
│ ├── input1035
│ ├── input1080
│ ├── input1088
│ ├── input1125
│ ├── input1135
│ ├── input1157
│ ├── input1157~
│ ├── input1163
│ ├── input1273
│ ├── input1321
│ ├── input1384
│ ├── input1426
│ ├── input1458
│ ├── input1459
│ ├── input1466
│ ├── input1511
│ ├── input1511~
│ ├── input1579
│ ├── input1631
│ ├── input1631~
│ ├── input1840
│ ├── input1861
│ ├── input1861~
│ ├── input1887
│ ├── input1936
│ ├── input2
│ ├── input2002
│ ├── input2192
│ ├── input2240
│ ├── input2240~
│ ├── input2250
│ ├── input2251
│ ├── input2253
│ ├── input2299
│ ├── input2388
│ ├── input2485
│ ├── input2488
│ ├── input2503
│ ├── input2531
│ ├── input3
│ ├── input3009
│ ├── input3020
│ ├── input3026
│ ├── input3041
│ ├── input3080
│ ├── input3083
│ ├── input3089
│ ├── input3126
│ ├── input3259
│ ├── input3267
│ ├── input3267~
│ ├── input3267_2
│ ├── input3267_3
│ ├── input3274
│ ├── input3274~
│ ├── input3281
│ ├── input3281_2
│ ├── input3281_2~
│ ├── input3349
│ ├── input3356
│ ├── input3356~
│ ├── input3436
│ ├── input3624
│ └── input4
├── MATCH_PARENTHESIS
│ ├── 1068.cpp
│ ├── explain1068
│ └── explain1068~
├── names.txt
├── NIM
│ ├── 1740.cpp
│ ├── 2960.cpp
│ └── 2975.cpp
├── picknames.py
├── SampleInput
├── SEARCH
│ ├── 3.cpp
│ ├── BFS
│ │ ├── 1426.cpp
│ │ ├── 3026_aborted.cpp
│ │ ├── 3026.cpp
│ │ ├── 3083.cpp
│ │ ├── 3083W.cpp
│ │ ├── 3126.cpp
│ │ ├── 3278.cpp
│ │ └── 3281.cpp
│ ├── DFS
│ │ ├── 1321.cpp
│ │ ├── 2251.cpp
│ │ ├── 2251dfs_tle.cpp
│ │ ├── 2488.cpp
│ │ └── 2531.cpp
│ ├── DFS_MAZE
│ │ ├── 1088.cpp
│ │ └── 3009.cpp
│ └── Q_SORT
│ └── 2388.cpp
├── SIMULATE
│ └── 2632.cpp
├── SORT
│ └── MERGE_SORT
│ ├── 2299.cpp
│ └── 2299TLE.cpp
└── STRINGS
├── 2159.cpp
├── 2159(WA).cpp
├── 2192.cpp
└── SUBSTRING
└── 1936.cpp
37 directories, 214 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论