Is it possible to delete a specific array?Splitting an array of numbers into all possible combinationsReverse...
Vector-transposing function
Is there a logarithm base for which the logarithm becomes an identity function?
Can I negotiate a patent idea for a raise, under French law?
Is this Paypal Github SDK reference really a dangerous site?
Generating a list with duplicate entries
Averaging over columns while ignoring zero entries
Will the concrete slab in a partially heated shed conduct a lot of heat to the unconditioned area?
After Brexit, will the EU recognize British passports that are valid for more than ten years?
Should I apply for my boss's promotion?
Why do phishing e-mails use faked e-mail addresses instead of the real one?
What exactly is the meaning of "fine wine"?
Where is the License file location for Identity Server in Sitecore 9.1?
Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?
Tabular environment - text vertically positions itself by bottom of tikz picture in adjacent cell
Can I challenge the interviewer to give me a proper technical feedback?
Insult for someone who "doesn't know anything"
I am the person who abides by rules but breaks the rules . Who am I
Has a sovereign Communist government ever run, and conceded loss, on a fair election?
What is the best index strategy or query SELECT when performing a search/lookup BETWEEN IP address (IPv4 and IPv6) ranges?
Why do we say 'Pairwise Disjoint', rather than 'Disjoint'?
How to install "rounded" brake pads
Does the US political system, in principle, allow for a no-party system?
Did Amazon pay $0 in taxes last year?
Should we avoid writing fiction about historical events without extensive research?
Is it possible to delete a specific array?
Splitting an array of numbers into all possible combinationsReverse a word using string manipulationCount specific array values“Expanding” a 2d array into a 1d arrayDelete the node at index i from its current position and insert it after node at index jHackerrank delete a nodegetRandom() - Randomize array and get resultManipulating an ES6 static class property that is an arrayPerforming a “mean blur”Generate all possible permutations of a string in C++
$begingroup$
i'm trying to delete an array by giving their position.
void deleteItemShoe(SportShoe *MySepatu, int numOfShoe){
int DataShoe;
DataShoe = numOfShoe;
int i;
cout << "nEnter the position want to be deleted: (eg. 1) "<< endl;
cin >> DataShoe;
--DataShoe;
for(i=DataShoe; i<SIZE; i++){
MySepatu[i] = MySepatu[i+1];
delete[] MySepatu;
(numOfShoe = numOfShoe-1);
}
//delete MySepatu;
MenuSportShoe(MySepatu, numOfShoe);
}
Using this method, it will delete the whole MySepatu. (MySepatu is the ARRAY i mean before). So, is there any possible way to delete only on ARRAY?
c++ array
New contributor
$endgroup$
add a comment |
$begingroup$
i'm trying to delete an array by giving their position.
void deleteItemShoe(SportShoe *MySepatu, int numOfShoe){
int DataShoe;
DataShoe = numOfShoe;
int i;
cout << "nEnter the position want to be deleted: (eg. 1) "<< endl;
cin >> DataShoe;
--DataShoe;
for(i=DataShoe; i<SIZE; i++){
MySepatu[i] = MySepatu[i+1];
delete[] MySepatu;
(numOfShoe = numOfShoe-1);
}
//delete MySepatu;
MenuSportShoe(MySepatu, numOfShoe);
}
Using this method, it will delete the whole MySepatu. (MySepatu is the ARRAY i mean before). So, is there any possible way to delete only on ARRAY?
c++ array
New contributor
$endgroup$
add a comment |
$begingroup$
i'm trying to delete an array by giving their position.
void deleteItemShoe(SportShoe *MySepatu, int numOfShoe){
int DataShoe;
DataShoe = numOfShoe;
int i;
cout << "nEnter the position want to be deleted: (eg. 1) "<< endl;
cin >> DataShoe;
--DataShoe;
for(i=DataShoe; i<SIZE; i++){
MySepatu[i] = MySepatu[i+1];
delete[] MySepatu;
(numOfShoe = numOfShoe-1);
}
//delete MySepatu;
MenuSportShoe(MySepatu, numOfShoe);
}
Using this method, it will delete the whole MySepatu. (MySepatu is the ARRAY i mean before). So, is there any possible way to delete only on ARRAY?
c++ array
New contributor
$endgroup$
i'm trying to delete an array by giving their position.
void deleteItemShoe(SportShoe *MySepatu, int numOfShoe){
int DataShoe;
DataShoe = numOfShoe;
int i;
cout << "nEnter the position want to be deleted: (eg. 1) "<< endl;
cin >> DataShoe;
--DataShoe;
for(i=DataShoe; i<SIZE; i++){
MySepatu[i] = MySepatu[i+1];
delete[] MySepatu;
(numOfShoe = numOfShoe-1);
}
//delete MySepatu;
MenuSportShoe(MySepatu, numOfShoe);
}
Using this method, it will delete the whole MySepatu. (MySepatu is the ARRAY i mean before). So, is there any possible way to delete only on ARRAY?
c++ array
c++ array
New contributor
New contributor
New contributor
asked 2 mins ago
Azrin GusniahAzrin Gusniah
11
11
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "196"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Azrin Gusniah is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215070%2fis-it-possible-to-delete-a-specific-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Azrin Gusniah is a new contributor. Be nice, and check out our Code of Conduct.
Azrin Gusniah is a new contributor. Be nice, and check out our Code of Conduct.
Azrin Gusniah is a new contributor. Be nice, and check out our Code of Conduct.
Azrin Gusniah is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f215070%2fis-it-possible-to-delete-a-specific-array%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown