上一页 1 ··· 6 7 8 9 10
摘要: Reverse String 题目要求: Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". 题目大意: 阅读全文
posted @ 2017-03-11 11:56 NemoWang 阅读(102) 评论(0) 推荐(0) 编辑
摘要: Nim Game 题目描述: You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to rem 阅读全文
posted @ 2017-03-11 11:51 NemoWang 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Add Digits 题目描述: Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the p 阅读全文
posted @ 2017-03-11 11:49 NemoWang 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 因为课堂上没听懂,又看不懂教科书(《C语言程序设计教程》第3版 谭浩强,张基温编著)上晦涩的表达方式,昨天晚上特意拿《C语言入门经典》这本书自己研究了一晚的数组与指针。 先来一个简单的程序: 在二维数组board[3][3]中: board 相当于一个指针(*board/board[0])的指针,指 阅读全文
posted @ 2015-06-10 17:56 NemoWang 阅读(351) 评论(1) 推荐(1) 编辑
上一页 1 ··· 6 7 8 9 10