Toggle navigation
Courses
Questions
Tags
Users
Midterm Question 1 (15%) - 2nd
0
like
0
dislike
1.1k
views
Write a program to count the highest occurrence of a single character in a string, Hint: This problem is only concerned with lowercase letters and single words, no sentences
example
input: aaaaaaaaaabb
output : 10
input: aaaabbbccccceeeezzzzzzz
output : 7
[Exercise]
Coding (C)
-
asked
Apr 21, 2017
in
Midterm
ID: 24268 -
Available when:
Unlimited
-
Due to:
Unlimited
|
1.1k
views
comment
Please
log in
or
register
to add a comment.
13
Answers
0
like
0
dislike
Hidden content!
#include <stdio.h>
#define MAX_SIZE 100
#define MAX_CHARS 255
int main()
{
* ** **** * * *** * string[MAX_SIZE];
* ** * * ******* ** *** frequency [MAX_CHARS];
* * * * ** ******* i=0, max;
****** * ** * * * *** ** ascii;
****** **** * * ** * ** * ** * ***** *
* * * *** * * ** * * i<MAX_CHARS; i++)
* * *** **** *** **
* ** * ** * *** ** * * *** ** ** * * *
* * ** * * * *** * *
** **** ** *** * ** * *
** * * ** **** * * **** *****
* * * * * * * *
** *** * * * * * * * ** * ** * * ** * * ***
* ** * ****** **** * * * * ** ** * ** *
* ** * ** ** *** * ***** * * * ** * ** **** *
* * * *** * ** ** *
*** * * **** *** * ** =0;
********* ****** * * ** ** * * * * i<MAX_CHARS; i++)
{
**** *** ***** ****** * ** ****** * **** * * * * ** ** * * *** *
* * * * * * * **** ** * * ** * ** *** ** ** * ***** * ** ** * ** *** *** * ******
}
* * *** ** *** *** * * ** * * * ** ** frequency[max]);
** *** ** ** * ** * ** 0;
}
answered
Apr 21, 2017
by
HnryGvez
(
-48
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#define MAX_SIZE 100
#define MAX_CHARS 255
int main(){
* **** ** ** * * * * ** string[MAX_SIZE];
* ** *** ** ** * *** ** ** ** times[MAX_CHARS];
* * * ****** ** * i = 0, max;
* * **** * * *** ** ** *** count;
**** * ** * ** *** * ***
* * * * * ** * ** **** * i<MAX_CHARS; i++){
* * * * ** ** *********** ** ***** ** * *** * ** * * = 0;
** * * * * *
* * * * * * * *** * *
* **** ** * *** * * * * * * != '\0'){
******* * ** * * * * *** *** * ** * * ** * = (int)string[i];
** *** ** * * * * * ***** ****** ** * * ** * * += 1;
* * ** * ** ** * * ** * * ***** ** **** ** * ***
*** **** * *** *
* * ** ** * * ** * * * * = 0;
* ** * *** * * * * * i<MAX_CHARS; i++){
** **** * *********** * * * * * ** **** > times[max])
* **** *** ** * * *** * ** **** ** * * ** **** * * ********* * = i;
*** * * ** * * * ** ** *****
* *** *** * *** * * * * * ** ****** *
* * * ** * * **** *** ** 0;
}
answered
Apr 21, 2017
by
McLovin
(
20
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <string.h>
#define MAX_STR 50
int main(void){
int c1=1, c2=0, i;
char a[MAX_STR];
* * *** ** * ***** * * * **** **** ***** a);
* * * * *** **** ** **** * ** * i<strlen(a); i++){
* *** *** ** * ** *** ** *** **** ***** * **
** ** ** * ** * * * ** ** ** ** *** * * * *** ** **** * **
** * **** * * ** *** * * ** ** * * * ***** * * * **
** *** * *** ** *** ** **** ** *** * * ** **** * ** * **
***** ******* ***** * * * * *** ** * **** ** * **** ** * * * **** * * * * * *
** * * * * ** * ** * ****** ** * * * ** *** * * *** * * * * * ** ** * ** * * * ***
* * ********** * ** * * * * * *** * **
}
* * ** ** * * ******* ** *
** *** * * * * ***** * *** ** ***** ** *** * * * * ** * c2);
* ** * **** ** *
* * ** * ** * * * * * * * * * ** * **** ** * * *** *** * c1);
* * * ** ** ** *** ***** * * ** 0;
}
answered
Apr 21, 2017
by
McLovin
(
20
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#define MAX_SIZE 100
#define MAX_CHARS 255
int main()
{
**** ** * ****** * *** * * string[MAX_SIZE];
*** * ** * * **** ** **** * * frequency [MAX_CHARS];
* * **** ** *** ** * ** i=0, max;
*** **** * ** ** ** ** ** * ** * ascii;
* * ** * ** **** * **
* * ** ** * * * *** ** i<MAX_CHARS; i++)
** * ***** * ** * ****
** * * * ** ********* *** ** * * *** ** **
** ** * * ** ***
** * ** * ** *** ** * *
* ***** * ** *** * * * * *
** ** ** * *** * * ***
** * * * **** * * ** * * * *** * * * *** ** **
*** *** * * * *** ** * * ** *** * **
* ** ** **** * ** * ***** * ** * * * ** * ** ** ****** *
* **** * ****
** * **** *** ** * =0;
***** *** * * * ** * * i<MAX_CHARS; i++)
* * *** * ** * ***
** * * **** ** * *** **** **** * * * **** * * *
*** ** ****** ** * * * * ** * ****** * ** * **** *** * * **** *
}
** * * ** * * ****** * ***** *** frequency[max]);
* * * *********** *** ***** ** 0;
}
answered
Apr 21, 2017
by
HnryGvez
(
-48
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#define MAX_SIZE 100
#define MAX_CHAR 255
int main()
{
* * * ** * ** * * * ** *** * * string[MAX_SIZE];
** ** * * * * * ** frequency[MAX_CHAR]; int i = 0, Max; int ascii;
* * * ** **** ***** * * **
* * *** ** * *** * * * ** i<MAX_CHAR; i++)
**** ** * * * *** * **
* * * **** ** ** * ** * * * ** ** * ****** * * = 0;
* * * * * *
* *** * * *** *
* *** *** * * **** != '\0')
* ******* *** * *** *
* ** **** *** ** * **** **** * * * ** **** = (int)string[i];
** ** * ** *** ** ** *** * ** * * * += 1;
**** * *** * * ********* * ***** * * ** ** **** * *
**** * ** *** * * * * *
* ** * * ** ** *** = 0;
** * **** ** ** * ** ** i<MAX_CHAR; i++)
* *** * * ** ***** * ** **
* * ** * ** ** * * ** * * * * * *** > frequency[Max])
** *** * * ** **** ** *** * ** ** * *** ***** * * = i;
* * * * ** * ** ** * * * **
** ** ** ** * * ******* * *** * * *** *
* * * * * *** ***** ** 0;
}
answered
Apr 21, 2017
by
onolyn11
(
44
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#define MAX_SIZE 100
#define MAX_CHARS 255
int main()
{
* ** ** ** ** * * string[MAX_SIZE];
* ***** * * ** ** * * freq[MAX_CHARS];
* * ** * **** ** * i = 0, max;
** * * * * * ** ascii;
** ** **** * * ** * * * * *
* ** ** **** ** ********* i<MAX_CHARS; i++)
** * * * ******** * * *
* * * * * **** * ****** * *** * * ** **** = 0;}
**** ****** ****** **
* * * * *** ** * ****** * * !='\0')
* * **** *** * ***
* * * ** ** * * ** * * * ** * ** **** = (int)string[i];
** ** ** ** * * * * ******* * ** * **** * ** ** += 1;
*** * *** * ** * ******* * *** * ** * ****** *
* * * ** ** *** * ** = 0;
*** * ** ** * * * ** ** ** i<MAX_CHARS; i++)
* * * *** * * ***
* * ** * ***** ***** * **** *** * ** * ** * > freq[max])
**** ** * *** **** ** * ** * *** ** * ** ** ** ******* * * *** *** = i;}
** ** *** * * ** ** * ** * * ***** *
* * * ** * * ** 0;
** ** *** * *** *** *****
answered
Apr 21, 2017
by
lpez07
(
38
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#define MAX_SIZE 100
#define MAX_CHARS 255
int main()
{
* *** ** *** *** * string[MAX_SIZE];
* * **** **** ***** * * freq[MAX_CHARS];
** ** ** *** ***** *** * ** i = 0, max;
** * * *** **** * *** ascii;
* * ******* * * * ****** ** *
* * * * * * * ***** *** * ** i<MAX_CHARS; i++)
**** * *** * *** * *** *
* ** **** * ** ** ** ** * ** * **** * * * = 0;}
** * ** **** * * * * *
*** ** * ****** * * *** ** ** != '\0')
** * ** * * * * ***
*** *** * ***** ** * * ***** * * * * * * = (int)string[i];
**** ***** ** *** * *** *** * ** * * ** * ** * += 1;
* ***** * * * ** * * **** * * * * * * *
******* * ** ***** * *** * = 0;
* *** ** ** **** * **** **** * * i<MAX_CHARS; i++)
* ** *** * **
* * ** **** ** * * *** ** **** * **** ** * * * * > freq[max])
*** * * *** ** **** ** ******** ** ********* * ** * ** ** ** ** * ** = i;}
* *** * * ** **** ** ** *** ** * ** * ** ** ***
* * * * ** * *** * 0;
answered
Apr 21, 2017
by
lpez07
(
38
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include ** * * *
#define MAX_SIZE 100 //Maximum size of the string
#define MAX_CHARS 255 //Maximum characters allowed
int main()
{
** *** *** ******** string[MAX_SIZE];
* * *** **** * *** *** frequency[MAX_CHARS]
* ** ** *** ** * * i = 0, max;
*** * ** * *** * * * ascii;
** ** ** ** **** *** * * * ** **
*** ** * ******* *** *** i<MAX_CHARS; i++)
* * ** **** * * * *
* * * *** * ** ** ** * * * ** * * * * * *** ** * ** * = 0;
** ** ** *** *** * ** * **
** *** * * * *** ** *
** * * ** *** * * * ** * *** * != '\0')
* * * ****** ** ** *
* * * * * ** ** * *** * * **** ** ***** * = (int)string[i]
* * * *** * * * * ** ******* * ** **** **** * **** ** += 1
* * ** *** **** **
* ****** * **** * ***
** * * ***** * * ** ** * * = 0;
* * ** ** * ** ***** ** ** ** i<MAX_CHARS; i++)
* ** ******* **** **** ***
* ** ***** * * * *** * * * * *** ********* * ** > frequency[max])
* * *** * * ** *** * ** * * * ** * * ** *** * * * ** * ** *** = i;
* ******* ** * * * **
* ** ** ** * * * ** * * * ** ** ******* ** ** *
** ****** *** ** ** 0;
}
answered
Apr 21, 2017
by
lpez07
(
38
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include **** ****
#include * *** * *
#include *** * *** ***
int main(){
*** * * * * ** * * * ** * i, j;
* * * ** * *** word[100];
* *** *** * * **** ***** **** lenght = 0;
* ** ***** * ** ** *** max = 0;
** * * * ** * *** * counter[26] = {0};
** *** * ** * * *** Alpha[26] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};
* * * * ** *** ** ** * * * word);
* * ** * ***** * **** ** = strlen(word);
* * *** ** * * ** * * * *** * lenght);
**** *** * * ********* * ** * * * i++){
* ***** ** * * ** ** * ** * * *** * j<26; j++){
**** * * ****** ** * **** * ** *** * * * ** ** ** *** ** ** *** * == Alpha[j]){
** ** ***** * * ** * ** **** * * * * ** *** * * ** * * **** * * * ** * * * ** * **** *
* ****** ** * * ** * * *** ** ** ** * **** ********* * ** *
* ***** ****** ** * * ** * *** * * * * ***
** * *** * ** *** * ** * *
* * *** *** ** *** ** * i<26; i++){
** * ** * **** * *** *** ** ** * **** *** * > max)
* *** * ** * *** * * * **** * *** ** * *** ** ** *** ** ****** * = counter[i];
* ** ********** * *** ** * *
* * ** * * ***** ** **** * * * * * *** max);
**** *** * * * * * *** ** 0;
}
answered
Apr 21, 2017
by
Kevin52
(
-188
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
* * * ***** **
***** *** ***
*** *** * * **
* *
* * ***
* num ** =
* i;
* max =0;
* *
* ( ** * ** * * *
* * * * ** *
* ***** * *
if * * * * num *
* * * **** **** * * ***
}
****** ** *** * );
*** 0;}
answered
Apr 21, 2017
by
emgy1995
(
-34
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
1
2
next »
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.70.127.53
©2016-2025
Related questions
0
like
0
dislike
11
answers
Midterm Question 3 (15%) - 2nd
[Exam]
asked
Apr 21, 2017
in
Midterm
ID: 24270 -
Available when:
Unlimited
-
Due to:
Unlimited
|
1k
views
0
like
0
dislike
47
answers
Midterm Question 1 (15%)
[Exam]
asked
Apr 13, 2017
in
Midterm
ID: 23784 -
Available when:
Unlimited
-
Due to:
Unlimited
|
3.3k
views
0
like
0
dislike
8
answers
Midterm Question 6 (20%) - 2nd
[Exam]
asked
Apr 21, 2017
in
Midterm
ID: 24273 -
Available when:
Unlimited
-
Due to:
Unlimited
|
794
views
0
like
0
dislike
4
answers
Midterm Question 5 (10%) - 2nd
[Exam]
asked
Apr 21, 2017
in
Midterm
ID: 24272 -
Available when:
Unlimited
-
Due to:
Unlimited
|
553
views
0
like
0
dislike
6
answers
Midterm Question 4 (20%) - 2nd
[Normal]
asked
Apr 21, 2017
in
Midterm
by
thopd
(
12.1k
points)
ID: 24271 -
Available when:
Unlimited
-
Due to:
Unlimited
|
680
views
midterm
12,783
questions
183,442
answers
172,219
comments
4,824
users