Problem
Given a list of space separated words, reverse the order of the words. Each line of text contains L letters and W words.
A line will only consist of letters and space characters. There will...
分类:
其他好文 时间:
2014-10-12 13:11:28
阅读次数:
133
Problem
The Latin alphabet contains 26 characters and telephones only have ten digits on the keypad. We would like to make it easier to write a message to your friend using a sequence of keypresses t...
分类:
其他好文 时间:
2014-10-12 12:54:58
阅读次数:
163
Problem
You receive a credit C at a local store and would like to buy two items. You first walk through the store and create a list L of
all available items. From this list you would like to buy tw...
分类:
其他好文 时间:
2014-10-12 12:38:28
阅读次数:
241
Sharepoint学习笔记—习题系列--70-576习题解析 -(Q147-Q151)
分类:
其他好文 时间:
2014-10-12 12:27:17
阅读次数:
210
[问题2014A01] 解答一(第一列拆分法,由张钧瑞同学提供)(1)当 \(a=0\) 时,这是高代书复习题一第 33 题,可用升阶法和 Vander Monde 行列式来求解,其结果为\[|A|=\prod_{1\leq i<j\leq n}(x_j-x_i)\Big(\sum_{i=1}^nx...
分类:
其他好文 时间:
2014-10-12 11:16:07
阅读次数:
200
编写简单的查询语句
1.显示部门表的全部信息
Select * from dept;
2.显示部门号码,部门名称
Selectdeptno,dname from dept;
3.显示以下字段及字符串的连接:员工名 ," 1个月的工资为: " ,工资 。如:Amy 1个月的工资为:8000
Select ename||’一个月的工资为:’|| sal fromemp;
4....
分类:
数据库 时间:
2014-10-11 22:20:46
阅读次数:
199
缘起:计算机技术在未来将会很重要,所以想业余做一些培训的事情,以前在公司也做过培训编程的事情,有这方面的经验。而数据结构与算法的重要性不言而喻了。编程语言选用python,上手速度快,学会以后能迅速开始学习数据结构与算法。数据结构与算法的教材选用《算法导论》。习题选自leetcode。不教很变态的算...
分类:
编程语言 时间:
2014-10-11 13:19:05
阅读次数:
238
练习一要求 : 在控制台中人工输入任意十个数值,最后求十个数值的合。首先要将输入的数值定义:1)整型定义 以int为例:int a = Convert.ToInt(Console.ReadLine())2)浮点定义以double为例:double a = Convert.ToDouble(Conso...
分类:
其他好文 时间:
2014-10-11 01:57:44
阅读次数:
202
习题要求:依次键盘输入每个人的名字,加年龄,之后汇总打印出来,之后求年龄和打印出来。需要将名字和年龄分别定义赋值。名字定义为引用型,string m1 = Console.ReadLine();年龄则需要定义为值型:double n1 = Convert.ToDouble(Console.ReadL...
分类:
其他好文 时间:
2014-10-11 01:28:54
阅读次数:
209
SICP 习题 2.10 要求我们处理区间除法运算中除于零的问题。题中讲到一个专业程序员Ben Bitdiddle看了Alyssa的工作后提出了除于零的问题,大家留意一下这个叫Ben的人,后面会不断出现这个人,只要是这个人提到的事情一般是对的,他的角色定位是个计算机牛人。对于区间运算的除于零的问题,处理起来也比较简单,只需要判断除数是不是为零,除数为零就报错。对于一个区间来讲,所谓为零就是这个区间...
分类:
其他好文 时间:
2014-10-11 01:18:54
阅读次数:
251