代码改变世界

随笔档案-2014年07月

男人穿什么样比较容易追到白富美

2014-07-17 11:55 by kingshow, 191 阅读, 收藏, 编辑
摘要: 男人穿什么样比较容易追到白富美[来自GQ男士网手机版]作者:Luxbx水粉色的领口巾和脚下同色系的船鞋相互呼应,一身清爽的蓝白搭配,和身边一身粉嫩的Olivia相互衬托。又是一身极简的蓝色系搭配,但仔细看会发现Johannes用不同深浅的蓝色系单品营造出丰富的层次,值得各位男士学习的休闲look。一... 阅读全文

休假时自动回复邮件怎么写?

2014-07-17 10:34 by kingshow, 9107 阅读, 收藏, 编辑
摘要: 休假时自动回复邮件怎么写?最常见的休假时的自动回复邮件应该包括3大要素:1. 休假时间或回归工作的时间2. 你的联系方式3. 其他联系人及联系方式普通青年版其实就是微软的自动回复模板啦↓Thank you for your message. I am currently out of the off... 阅读全文

C语言 解决迷宫问题练习

2014-07-11 15:29 by kingshow, 4576 阅读, 收藏, 编辑
摘要: 利用C语言来解决类似迷宫的问题,下面例子分别用两种方法来解决![Problem]There is a maze as shown in the diagram below. In the maze in the form of a 100*100 matrix, the white backgrou... 阅读全文

C语言 链队列基本操作

2014-07-11 11:10 by kingshow, 379 阅读, 收藏, 编辑
摘要: C语言链队列基本操作#include #include #include /* C语言链队列基本操作 2014年7月11日10:11:41*/typedef int qType;typedef struct node{ qType data; struct node *pNe... 阅读全文

C语言,栈的实现

2014-07-10 12:35 by kingshow, 272 阅读, 收藏, 编辑
摘要: 一、动态栈的实现#include #include #include //定义一个节点的结构typedef struct node{ int member; //数据域 struct node *pNext; ... 阅读全文

C语言,查找子字符串并统计个数

2014-07-08 12:10 by kingshow, 5729 阅读, 收藏, 编辑
摘要: 一、C语言,在一个字符串中查找一个子字符串,并统计个数~EX:#include #include int find_string(char str[],char substr[]);int main(){ /* char ch[10] = {"qweasd"}; int n = s... 阅读全文

你在工作中无意间会犯的四个错误

2014-07-03 17:33 by kingshow, 250 阅读, 收藏, 编辑
摘要: 4 Work Mistakes You Don't Realize You're Making你在工作中无意间会犯的四个错误When you’re the new girl at work, you do everything in your power to stay on your best b... 阅读全文