- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为我的程序创建一个函数,它采用 2 个 2D 数组,第一个包含艺术家的姓名,第二个包含所述艺术家的歌曲,将艺术家姓名放在数组的开头,然后是一个“-”,然后是歌曲名称:
Artist1 - Song 1.
Artist1 - Song 2.
..
..
Artist4 - Song 3.
我已经为这样的函数创建了原型(prototype):
int amalgamateArtistsAndSongs (char amalgamatedSongs[][163],char artists[][80],
char songsOfAnArtists[][80],int numOfSongs[],int pos);
数组声明:
//The array containing artists names
char artists[4][80];
//The array containing the sorted artists
char sortedArtists[4][80];
//Songs for Artist 1
char songsArtist1[3][80];
//Songs for Artist 2
char songsArtist2[3][80];
//Songs for Artist 3
char songsArtist3[3][80];
//Songs for Artist 4
char songsArtist4[3][80];
//Array which holds amalgamated artist and song names -> (Artists - Song Name).
char amalgamatedSongs[12][163];
//The total number of artists (Note it can be less than 4)
int numOfArtists = 0;
//The total number of songs for each artist (Note that less than 3 songs can be provided for each artist)
int numSongsPerArtist[4] = {0,0,0,0};
我已经包含了 int numSongsPerArtist;
因为可能会出现一个艺术家的歌曲少于 3 首的情况,以避免 Artistx - “blank” 出现在 amalgamatedSongs[][]
我尝试使用 strcpy()
和 strcat()
创建此函数,但它似乎没有按照我希望的方式工作:
int amalgamateArtistsAndSongs (char amalgamatedSongs[][163],char artists[][80],char songsOfAnArtists[][80],int numOfSongs[],int pos)
{
int i;
for (i=0;i<numOfSongs;i++)
{
strcpy(amalgamatedSongs[pos],artists[]);
strcat(amalgamatedSongs[pos]," - ");
strcat(amalgamatedSongs[pos],songsOfAnArtists[i]);
strcat(amalgamatedSongs[pos],"\0");
pos++;
}
return pos;
}
我使用 int pos;
来指示该函数的下一次调用,其中 amalgamatedSongs[][]
中该函数的上一次调用停止了(其中最后一位艺术家 - 歌曲被放置)。
这就是函数的调用方式
amalgamateArtistsAndSongs(amalgamatedSongs,artists[1],
songsArtist2,numSongsPerArtist[1],pos);
澄清一下:
如果
artists[][80] = {"artist1","artist2","artist3","artist4"};
songsArtist1[][80] = {"a","b","c"};
songsArtist2[][80] = {"aa","bb","cc"};
songsArtist3[][80] = {"aaa","bbb"};
songsArtist4[][80] = {"aaaa"};
然后(使用 amalgamateArtistsAndSongs()
函数后)
amalgamatedSongs[][163] = {"artist1 - a","artist1 - b","artist1 - c",
"artist2 - aa","artist2 - bb","artist2 - cc","artist3 - aaa","artist3 - bbb",
"artist4 - aaaa"};
最佳答案
这个函数
int amalgamateArtistsAndSongs (char amalgamatedSongs[][163],
char artists[][80],char songsOfAnArtists[][80],
int numOfSongs[],int pos)
{
int i;
for (i=0;i<numOfSongs;i++)
{
strcpy(amalgamatedSongs[pos],artists[]);
strcat(amalgamatedSongs[pos]," - ");
strcat(amalgamatedSongs[pos],songsOfAnArtists[i]);
strcat(amalgamatedSongs[pos],"\0");
pos++;
}
return pos;
}
不正确:numOfSongs
是一个指向数组的指针,for循环会一直循环直到 i
获取整数值numOfSongs
的地址的数量指向你肯定会溢出 amalgamatedSongs
。编译器肯定已经对此发出警告。正确的条件应该是i < numOfSongs[pos]
.
还有
strcpy(amalgamatedSongs[pos],artists[]);
是一个语法错误,你应该得到这样的信息:
error: expected expression before ‘]’ token
strcpy(amalgamatedSongs[pos],artists[]);
^
你可能想要
strcpy(amalgamatedSongs[pos], artists[pos]);
这个
strcat(amalgamatedSongs[pos],"\0");
不需要,因为 strcat
写道'\0'
-终止字节。
本系列的一个问题strcat
是你不知道整个弦是否适合 amalgamatedSongs[pos]
,你可能会溢出缓冲区。您必须使用 strncpy
和strncat
并手动设置 '\0'
- 在每次调用之间终止。这是很多工作,我会使用连接字符串 snprintf
:
int amalgamateArtistsAndSongs (char amalgamatedSongs[][163],
char artists[][80],char songsOfAnArtists[][80],
int numOfSongs[],int pos)
{
int i;
for (i=0;i<numOfSongs;i++)
{
snprintf(amalgamatedSongs[pos], 163, "%s - %s",
artists[pos], songsOfAnArtists[i]);
pos++;
}
return pos;
}
snprintf
最多可写入 163 个字符包括'\0'
- 终止字节。如果艺术家 - 歌曲组合太长,需要 162 个字符,snprintf
只会写162个字符并设置'\0'
-终止字节,因此不会溢出缓冲区。
man printf
#include <stdio.h>
int snprintf(char *str, size_t size, const char *format, ...);
int vsnprintf(char *str, size_t size, const char *format, va_list ap);The functions
snprintf()
andvsnprintf()
write at mostsize
bytes (including the terminating null byte ('\0'
)) tostr
.
关于C - 将 2 个 2D 字符串数组组合并更改为更大的 2D 数组的最简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48892823/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!