第二章線性表 順序結構 06。從有序順序表中刪除所有值重復的元素烁挟,使表中所有元素的值均不相同轧邪。 在在在在次看錯題,把有序表忽略萍虽,當做了無序表情竹。 我的錯誤答案: void De...
第二章線性表 順序結構 06。從有序順序表中刪除所有值重復的元素烁挟,使表中所有元素的值均不相同轧邪。 在在在在次看錯題,把有序表忽略萍虽,當做了無序表情竹。 我的錯誤答案: void De...
首先我獲得了兩份分別是server,client的socket代碼届榄。用的語言是c。 我首先嘗試用vm下debian虛擬機與ubuntu虛擬機通信倔喂,以debian11作為服務器...
前兩周在忙著科目一考試跟擺爛铝条,所以沒每天敲代碼靖苇。 昨天做了道題 原地址題目詳情 - 習題11-8 單鏈表結點刪除 (pintia.cn)[https://pintia.cn/...
題目詳情 - 習題11-5 指定位置輸出字符串 (pintia.cn)[https://pintia.cn/problem-sets/1298273728383766528/...
char* match(char* s, char ch)本題要求定義一個函數(shù),在字符串中查找字符班缰,并定位在最后一次找到的位置贤壁。{ char* ps = NULL; ...
很長很長的一道題。題目詳情 - 習題10-11 有序表的增刪改查操作 (pintia.cn)[https://pintia.cn/problem-sets/129827372...
#include void printdigits(int n); int main() { int n; scanf("%d", &n); printdigit...
#include double fn(double x, int n); int main() { double x; int n; scanf("%lf %d"...
#include #include <math.h> int search(int n); int main() { int number; scanf("%d", ...
做之前不知道什么是遞歸埠忘,兩分鐘敲出來后搜了果然發(fā)現(xiàn)不一樣脾拆。 int sum(int n) { if (n == 0) { return 0; } else if ...
這道題是我初次接觸到指針的函數(shù)題。所以做的十分認真莹妒。 原題:題目詳情 - 習題9-6 按等級統(tǒng)計學生成績 (pintia.cn)[https://pintia.cn/prob...
#include #define MAXN 20 void delchar(char* str, char c); void ReadString(char s[]); in...
#define _CRT_SECURE_NO_WARNINGS 1 #include #define MAXN 20 void strmcpy(char* t, int m,...
#include int fib(int n); void PrintFN(int m, int n); int main() { int m, n, t; //sc...
#define _CRT_SECURE_NO_WARNINGS 1 #include int factorsum(int number); void PrintPN(int ...
#define _CRT_SECURE_NO_WARNINGS 1 #include void hollowPyramid(int n); int main(){ int...
#define _CRT_SECURE_NO_WARNINGS 1#include int narcissistic(int number);void PrintN(int...
#define _CRT_SECURE_NO_WARNINGS 1#include int narcissistic(int number);//void PrintN(i...
題目要求: 本題要求實現(xiàn)函數(shù)輸出n行字符金字塔名船。 函數(shù)接口定義: void CharPyramid( int n, char ch); 其中n和ch是用戶傳入的參數(shù),n為[1...