473,699 Members | 2,701 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Help avoid goto

// return early if all points are the same
for(int i=1; i<n; i++)
if(y[i] != y[0]) goto SKIP;
return;
SKIP:

Can someone help me with an alternative to this snippet that avoids
goto? Without introducing a new variable?
Jun 27 '08 #1
21 1437
In article <fc************ *************** *******@x19g200 0prg.googlegrou ps.com>,
spasmous <sp******@gmail .comwrote:
>// return early if all points are the same
for(int i=1; i<n; i++)
if(y[i] != y[0]) goto SKIP;
return;
SKIP:
>Can someone help me with an alternative to this snippet that avoids
goto? Without introducing a new variable?
int i = 1;
while( i<n && y[i] != y[0] ) i++;
if (i == n) return;

This can also be written as a for loop.
--
"Let me live in my house by the side of the road --
It's here the race of men go by.
They are good, they are bad, they are weak, they are strong
Wise, foolish -- so am I;" -- Sam Walter Foss
Jun 27 '08 #2
spasmous wrote:
// return early if all points are the same
for(int i=1; i<n; i++)
if(y[i] != y[0]) goto SKIP;
return;
SKIP:

Can someone help me with an alternative to this snippet that avoids
goto? Without introducing a new variable?
int i;

for (i = 1; n i; ++i) {
if (y[i] != y[0]) {
break;
}
}
if (i == n || 1 n) {
return;
}
--
pete
Jun 27 '08 #3
spasmous <sp******@gmail .comwrites:
// return early if all points are the same
for(int i=1; i<n; i++)
if(y[i] != y[0]) goto SKIP;
return;
SKIP:

Can someone help me with an alternative to this snippet that avoids
goto? Without introducing a new variable?
9 times out of 10, this sort of situation is a reminder that you need
another function. Testing if an array has all elements equal is the
job of a separate function. There are lots of ways to write it:

bool all_equal(T *array, size_t n)
{
for (size_t i = 1; i < n; i++)
if (array[i] != array[0])
return false;
return true;
}

May people prefer this style (I think I do):

bool all_equal(T *array, size_t n)
{
for (size_t i = 1; i < n && array[y] == array[0]; i++)
continue;
return i == n;
}

(Note that they are not the same when n == 0 -- you need to decide what
you mean by that case.)

I had to use T because I don't know the type of the elements of y. If
you don't like using C99isms, move the declaration of i out of the
loop and return int rather than bool (or declare bool yourself).

--
Ben.
Jun 27 '08 #4
On Jun 20, 12:28*pm, rober...@ibd.nr c-cnrc.gc.ca (Walter Roberson)
wrote:
>
int i = 1;
while( i<n && y[i] != y[0] ) i++;
if (i == n) return;

This can also be written as a for loop.
Very nice Walter. I went with a for loop variant.

// return early if all points are the same
for(int i=1; y[i]!=y[0]; i++)
if(i == n) return;

Jun 27 '08 #5
spasmous wrote:
On Jun 20, 12:28 pm, rober...@ibd.nr c-cnrc.gc.ca (Walter Roberson)
wrote:
>int i = 1;
while( i<n && y[i] != y[0] ) i++;
if (i == n) return;

This can also be written as a for loop.

Very nice Walter. I went with a for loop variant.

// return early if all points are the same
for(int i=1; y[i]!=y[0]; i++)
if(i == n) return;
Note that this tests y[n], the (n+1)st array element.

--
Er*********@sun .com
Jun 27 '08 #6
In article <10************ *************** *******@s33g200 0pri.googlegrou ps.com>,
spasmous <sp******@gmail .comwrote:
>On Jun 20, 12:28=A0pm, rober...@ibd.nr c-cnrc.gc.ca (Walter Roberson)
wrote:
>>
int i = 1;
while( i<n && y[i] != y[0] ) i++;
if (i == n) return;

This can also be written as a for loop.

Very nice Walter. I went with a for loop variant.

// return early if all points are the same
for(int i=1; y[i]!=y[0]; i++)
if(i == n) return;
If y is defined from index 0 to n-1 then your code will access
y[n] in the termination test, which would be undefined behaviour
under that sizing assumption.

--
"When a scientist is ahead of his times, it is often through
misunderstandin g of current, rather than intuition of future truth.
In science there is never any error so gross that it won't one day,
from some perspective, appear prophetic." -- Jean Rostand
Jun 27 '08 #7
On Jun 20, 12:19*pm, spasmous <spasm...@gmail .comwrote:
// return early if all points are the same
for(int i=1; i<n; i++)
* * if(y[i] != y[0]) goto SKIP;
return;
SKIP:

Can someone help me with an alternative to this snippet that avoids
goto? Without introducing a new variable?
{
// ...
for (int i = 1; i < n; i++) {
if (y[i] != y[0]) {
// entire ``SKIP:'' section here
break;
}
}
}

Like, put the conditional code into the body of the conditional
statement which tests that condition? Doh?

The reason you have a goto is that you relocated that logic away from
that construct. In general, you can't arbitrarily relocate control
without using GOTO or additional state variables.
Jun 27 '08 #8
On Jun 20, 1:12*pm, Ben Bacarisse <ben.use...@bsb .me.ukwrote:
9 times out of 10, this sort of situation is a reminder that you need
another function. *Testing if an array has all elements equal is the
job of a separate function. *There are lots of ways to write it:

bool all_equal(T *array, size_t n)
{
* * for (size_t i = 1; i < n; i++)
* * * * if (array[i] != array[0])
* * * * * * return false;
* * return true;

}

May people prefer this style (I think I do):

bool all_equal(T *array, size_t n)
{
* * for (size_t i = 1; i < n && array[y] == array[0]; i++)
* * * * continue;
* * return i == n;

This algorithm is not the same as the first version with the early
return. What if the array size is zero? The ``all equal'' condition is
true then: all elements of an empty sequence are equal to each other,
because it is not the case that there exist two distinct positions x
and y such that the x-th element is equal to the y-th element.

Moreover, the variable i is not in scope of the i == n expression.
Jun 27 '08 #9
spasmous wrote:
// return early if all points are the same
for(int i=1; i<n; i++)
if(y[i] != y[0]) goto SKIP;
return;
SKIP:

Can someone help me with an alternative to this snippet that avoids
goto? Without introducing a new variable?
if (isAllEqual(y, n)) return;
....
int isAllEqual(foo *y, int n) {
for (int i = 0; i <n; ++i) {
if (y[n] != y[0]) {
return false;
}
}
return true;
}

--
Daniel Pitts' Tech Blog: <http://virtualinfinity .net/wordpress/>
Jun 27 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
431
by: pertheli | last post by:
I am in a situation where only "goto" seems to be the answer for my program logic where I have to retry calling some repeated functions. Can anybody help in the usage of goto and its effect in local variables, as shown in the stripped code below void MyClass:Process(){ int iMaxRetry = 100;
37
3245
by: Tim Marshall | last post by:
From http://www.mvps.org/access/tencommandments.htm 9th item: Thou shalt not use "SendKeys", "Smart Codes" or "GoTo" (unless the GoTo be part of an OnError process) for these will lead you from the path of righteousness. What about also using it as a means of exiting a procedure?
77
4003
by: M.B | last post by:
Guys, Need some of your opinion on an oft beaten track We have an option of using "goto" in C language, but most testbooks (even K&R) advice against use of it. My personal experience was that goto sometimes makes program some more cleaner and easy to understand and also quite useful (in error handling cases). So why goto is outlawed from civilized c programmers community. is there any technical inefficiency in that.
1
4485
by: Line 1 | last post by:
Hello!! Can you help me with my CSS problems? I have created a page that overlays text on an image. the problem is that it is leaving all this space at the bottom of background image that I also need to remove. The page is for a nonprofit organization. You can see my HTML code here, and I have attached a graphic that shows how the page should look.
7
7116
by: steve marchant | last post by:
trying to learn VB6. Simple counting loop which counts to 8 in 1 sec intervals, then starts from 1 again and repeats. Have two Command buttons on the form. Cmd1 starts the counting, and I need to know how to stop it with Cmd2. Here's my code so far: Private Sub Command1_Click() Dim x, y, m m = 1 Do Print m
3
1269
by: John Smith | last post by:
Hi All, I have a script which reads a data file, reads the characters one by one and if a certain character is meet it does something else, at the moment it echos the fact that it meet a certain character. I need it to take the characters it has read up to that point and present them to a database field thats forms part of a set of fields that will be updated at once. Then it will continue to read the remainder of the file and repeat...
11
3411
by: =?Utf-8?B?Um9nZXIgVHJhbmNoZXo=?= | last post by:
Hello, I have a question about the infamous GOTO statement and the way to return a result from a sub: I have a sub that has to make some calls to external COM methods, and because these methods can fail I have to check them to be running ok, like this:
59
5041
by: raashid bhatt | last post by:
why are GOTO's not used they just a simple JMP instructions what's bad about them
6
2867
by: priyajohal | last post by:
#include<fstream.h> #include<process.h> #include<stdlib.h> #include<conio.h> #include<string.h> #include<dos.h> #include<ctype.h> #include<stdio.h> void setup() void help();
0
8686
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8615
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9033
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8911
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7748
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6533
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4375
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4627
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3057
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.