
编程
techtitan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
软件工程
xp和scrum编程https://blog.youkuaiyun.com/tsh123321/article/details/52290325原创 2021-02-13 21:30:00 · 120 阅读 · 0 评论 -
软件开发经典书籍
软件开发必看书籍《修改代码的艺术》代码整洁之道:程序员的职业素养人件 —和人月神话齐名软技能:代码之外的生存指南《代码大全》、《重构》和《设计模式》这些经典书会教给你高效的工作习惯和交易细节。 其他像《人件集》、《计算机编程心理学》和《人月神话》这些书会深入软件开发的心理层面。 其他书籍则处理算法。Soft Skills: The Software Developer’s Life Manual软件开发必看书籍https://blog.youkuaiyun.com/weixin_43106546/ar原创 2021-02-13 10:04:43 · 1218 阅读 · 4 评论 -
csdn 代码拷贝编译错误解决方法
代码都是用半角的符号才行,我们复制代码的时候,网页=给了全角的空格,所以就报错了.另外,>推荐搜狗输入法一个设置:找到全角的空格,使用查找和替换功能进行全角空格替换https://blog.youkuaiyun.com/weixin_44637711/article/details/89504775?utm_medium=distribute.pc_relevant_bbs_down.none-task-blog-baidujs-1.nonecase&depth_1-utm_source=distr原创 2021-02-12 22:15:55 · 864 阅读 · 0 评论 -
leetcode 505 迷宫2
题目:代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <stdbool.h>#include <limits.h>#define MAX_NUM (100 * 100)#define MAX_ROW 100#define MAX_COL 100#define MIN(a,b) ((a) < (b) ? (a) :..原创 2020-11-01 18:10:37 · 367 阅读 · 0 评论 -
n叉树解决分组问题
#include <stdio.h>#include <stdlib.h>#define ROW 10#define COL 2// int g_grid[ROW][COL] = { {0, -1}, {2, 0}, {3, 0}, {4, 0}, {5, 0}, {6, 2}, {7, 3}, {8, 3}, {9, 4}, {10, 4}, {11, 5}, {1, 7} };// int g_grid[ROW][COL] = { {0, -1}, {2, 0},原创 2020-06-25 20:05:16 · 192 阅读 · 0 评论 -
文件操作代码练习
main.cpp// oj_file_operation.cpp : Defines the entry point for the console application.//#include "stdafx.h"extern int number_operate(char *inFile, char *outFile);int main(int argc, char*原创 2015-05-17 21:23:38 · 603 阅读 · 0 评论 -
c 字符串分割函数
◆ 使用strtok函数分割。原型:char *strtok(char *s, char *delim);strtok在s中查找包含在delim中的字符并用NULL('\0')来替换,直到找遍整个字符串。 功能:分解字符串为一组字符串。s为要分解的字符串,delim为分隔符字符串。说明:首次调用时,s指向要分解的字符串,之后再次调用要把s设成原创 2016-05-29 06:38:25 · 699 阅读 · 0 评论 -
排序
http://www.cnblogs.com/syxchina/archive/2010/07/29/2197382.html原创 2016-05-29 07:30:22 · 365 阅读 · 0 评论 -
文件操作
window 文件夹 \一定要转义,如D:\c_test\file_test.txt 需要写成 D:\\c_test\\file_test.tx// file_test.cpp : Defines the entry point for the console application.//#include "stdafx.h"int main(i原创 2016-06-11 21:05:25 · 373 阅读 · 0 评论