01 2017 档案

摘要:1 // vector.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 #include 6 #include 7 #include 8 #include 9 using namespace std; 10 11 int main(in... 阅读全文
posted @ 2017-01-14 22:46 琴影 阅读(165) 评论(0) 推荐(0) 编辑
摘要:栈的常用操作函数:top()push()pop()size()empty() stack<int> a; 阅读全文
posted @ 2017-01-08 22:37 琴影 阅读(104) 评论(0) 推荐(0) 编辑
摘要:牛顿迭代法(Newton's method)又称为牛顿-拉夫逊(拉弗森)方法(Newton-Raphson method),它是牛顿在17世纪提出的一种在实数域和复数域上近似求解方程的方法。多数方程不存在求根公式,因此求精确根非常困难,甚至不可能,从而寻找方程的近似根就显得特别重要。方法使用函数f( 阅读全文
posted @ 2017-01-08 22:09 琴影 阅读(822) 评论(0) 推荐(0) 编辑