常用演算法程式集(c c )筆記(一)

2021-08-10 21:45:08 字數 851 閱讀 5667

(一)一維多項式求值

書本中是採用c編寫的**,在此修改為c++,並在visual studio 2017 community 下除錯程式

plvy.c程式

#include "stdafx.h" //visual studio 2017中的標頭檔案

#include "stdio.h"

double plyv(double a, int n, double x)

//求值函式,主要思想是迭代

int main()

; double x[2] = ;

printf("\n");

for (i = 0; i <= 1; i++)

printf("x(%d)=%5.21f p(%d)=%13.7e\n)", i, x[i], i, plyv(a, 7, x[i])); //查詢c的輸出格式

printf("\n");

}

plvy.cpp 程式

#include "stdafx.h"

#include using namespace std;

double plyv(double a, int n, double x)

//求值函式,主要思想是迭代

int main()

; double x[6] = ;

for (i = 0; i <= 5; i++)

cout <<"x"<<"("<

(二)總結與提公升

在改為c++的輸出時,開始不知道怎麼輸出括號,後來想括號也是字元,所以輸出字元就行,左括號與右括號分別用雙引號,中間夾著i,**如下

cout <<"x"<<"("<

學習 C C 常用演算法

借用記憶體複製函式memcpy,整體賦值 void memcpy void dst,void src,zize t size 這個函式的功能是將src上,大小為size位元組的資料賦值到dst上。呼叫該寒素需要引用標頭檔案 cstring int arr1 5 int arr2 10 memcpy ...

c c 常用演算法 5

1.樹的定義 樹 tree 是n n 0 個結點的有限集合t,若n 0時稱為空樹,否則 有且只有乙個特殊的稱為樹的根 root 結點 若n 1時,其餘的結點被分為m m 0 個互不相交的子集t1,t2,t3 tm,其中每個子集本身又是一棵樹,稱其為根的子樹 subtree 這是樹的遞迴定義,即用樹來...

一些C C 的演算法小程式

1,列印ascii字元 include include using namespace std class table void ascii protected int i void table ascii printf the number of 0 in the end of 100 is d....